-
Notifications
You must be signed in to change notification settings - Fork 633
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change php 7.2 special word Class to BaseClass (#993)
* change php 7.2 special word Class to BaseClass * add require yii2 ^2.0.13
- Loading branch information
1 parent
a8ff6e9
commit 120ab9e
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,15 @@ | |
use dektrium\user\models\query\AccountQuery; | ||
use dektrium\user\models\Token; | ||
use yii\authclient\ClientInterface; | ||
use yii\base\Object; | ||
use yii\base\BaseObject; | ||
use yii\db\ActiveQuery; | ||
|
||
/** | ||
* Finder provides some useful methods for finding active record models. | ||
* | ||
* @author Dmitry Erofeev <[email protected]> | ||
*/ | ||
class Finder extends Object | ||
class Finder extends BaseObject | ||
{ | ||
/** @var ActiveQuery */ | ||
protected $userQuery; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters