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

Commit 5822fc7

Browse files
daniftodidmirogin
authored andcommitted
Changed from Object to BaseObject as new version of PHP doesn't allow to have a custom class with name Object (#8)
1 parent fb010dd commit 5822fc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JsUrlManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Yii;
66
use yii\base\BootstrapInterface;
7-
use yii\base\Object;
7+
use yii\base\BaseObject;
88
use yii\helpers\Json;
99
use yii\base\Application;
1010
use yii\web\JsExpression;
@@ -19,7 +19,7 @@
1919
*
2020
* @author Dmitry Dorogin <[email protected]>
2121
*/
22-
class JsUrlManager extends Object implements BootstrapInterface
22+
class JsUrlManager extends BaseObject implements BootstrapInterface
2323
{
2424
/**
2525
* The location to register configuration Frontend UrlManager string

0 commit comments

Comments
 (0)