Skip to content

Commit

Permalink
change php 7.2 special word Class to BaseClass (#993)
Browse files Browse the repository at this point in the history
* change php 7.2 special word Class to BaseClass
* add require yii2 ^2.0.13
  • Loading branch information
bscheshirwork authored and thiagotalma committed Dec 28, 2017
1 parent a8ff6e9 commit 120ab9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Finder.php
Expand Up @@ -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 <dmeroff@gmail.com>
*/
class Finder extends Object
class Finder extends BaseObject
{
/** @var ActiveQuery */
protected $userQuery;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -19,7 +19,7 @@
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "^2.0.0",
"yiisoft/yii2": "^2.0.13",
"yiisoft/yii2-swiftmailer": "^2.0.0",
"yiisoft/yii2-authclient": "^2.1.0",
"yiisoft/yii2-bootstrap": "^2.0.0"
Expand Down

0 comments on commit 120ab9e

Please sign in to comment.