From e76fb238d483f21b497ae21f307423f080add558 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Thu, 20 Feb 2014 13:53:24 +0100 Subject: [PATCH] added missing use statement --- extensions/redis/ActiveQuery.php | 1 + extensions/sphinx/ActiveQuery.php | 1 + 2 files changed, 2 insertions(+) diff --git a/extensions/redis/ActiveQuery.php b/extensions/redis/ActiveQuery.php index 4c90b5b..59ac108 100644 --- a/extensions/redis/ActiveQuery.php +++ b/extensions/redis/ActiveQuery.php @@ -6,6 +6,7 @@ */ namespace yii\redis; + use yii\base\InvalidParamException; use yii\base\NotSupportedException; use yii\db\ActiveQueryInterface; diff --git a/extensions/sphinx/ActiveQuery.php b/extensions/sphinx/ActiveQuery.php index 34d5774..78397a6 100644 --- a/extensions/sphinx/ActiveQuery.php +++ b/extensions/sphinx/ActiveQuery.php @@ -11,6 +11,7 @@ use yii\base\InvalidCallException; use yii\db\ActiveQueryInterface; use yii\db\ActiveQueryTrait; use yii\db\ActiveRelationInterface; +use yii\db\ActiveRelationTrait; /** * ActiveQuery represents a Sphinx query associated with an Active Record class.