Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Changed from Object to BaseObject as new version of PHP doesn't allow…
Browse files Browse the repository at this point in the history
… to have a custom class with name Object (#8)
  • Loading branch information
daniftodi authored and dmirogin committed Jul 14, 2018
1 parent fb010dd commit 5822fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JsUrlManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Yii;
use yii\base\BootstrapInterface;
use yii\base\Object;
use yii\base\BaseObject;
use yii\helpers\Json;
use yii\base\Application;
use yii\web\JsExpression;
Expand All @@ -19,7 +19,7 @@
*
* @author Dmitry Dorogin <dmirogin@ya.ru>
*/
class JsUrlManager extends Object implements BootstrapInterface
class JsUrlManager extends BaseObject implements BootstrapInterface
{
/**
* The location to register configuration Frontend UrlManager string
Expand Down

0 comments on commit 5822fc7

Please sign in to comment.