Skip to content

Commit

Permalink
change Object to BaseObject for PHP7
Browse files Browse the repository at this point in the history
  • Loading branch information
cornernote authored Mar 26, 2018
1 parent b8debf5 commit e9aaba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/WorkflowDbSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use raoul2000\workflow\source\IWorkflowSource;
use Yii;
use yii\base\InvalidConfigException;
use yii\base\Object;
use yii\base\BaseObject;
use yii\caching\Cache;
use yii\db\BaseActiveRecord;
use yii\helpers\ArrayHelper;
Expand All @@ -32,7 +32,7 @@
* which are required by yii2-workflow.
*
*/
class WorkflowDbSource extends Object implements IWorkflowSource
class WorkflowDbSource extends BaseObject implements IWorkflowSource
{
/**
* The regular expression used to validate status and workflow Ids.
Expand Down

0 comments on commit e9aaba4

Please sign in to comment.