Skip to content

Commit 120ab9e

Browse files
bscheshirworkthiagotalma
authored andcommitted
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
1 parent a8ff6e9 commit 120ab9e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Finder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
use dektrium\user\models\query\AccountQuery;
1515
use dektrium\user\models\Token;
1616
use yii\authclient\ClientInterface;
17-
use yii\base\Object;
17+
use yii\base\BaseObject;
1818
use yii\db\ActiveQuery;
1919

2020
/**
2121
* Finder provides some useful methods for finding active record models.
2222
*
2323
* @author Dmitry Erofeev <[email protected]>
2424
*/
25-
class Finder extends Object
25+
class Finder extends BaseObject
2626
{
2727
/** @var ActiveQuery */
2828
protected $userQuery;

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"minimum-stability": "dev",
2020
"require": {
2121
"php": ">=5.4.0",
22-
"yiisoft/yii2": "^2.0.0",
22+
"yiisoft/yii2": "^2.0.13",
2323
"yiisoft/yii2-swiftmailer": "^2.0.0",
2424
"yiisoft/yii2-authclient": "^2.1.0",
2525
"yiisoft/yii2-bootstrap": "^2.0.0"

0 commit comments

Comments
 (0)