hiqdev /
hipanel-rbac
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * RBAC implementation for HiPanel |
||
| 4 | * |
||
| 5 | * @link https://github.com/hiqdev/hipanel-rbac |
||
| 6 | * @package hipanel-rbac |
||
| 7 | * @license BSD-3-Clause |
||
| 8 | * @copyright Copyright (c) 2016-2020, HiQDev (http://hiqdev.com/) |
||
| 9 | */ |
||
| 10 | |||
| 11 | use hiqdev\yii\compat\yii; |
||
|
0 ignored issues
–
show
|
|||
| 12 | use hiqdev\yii\compat\Buildtime; |
||
| 13 | |||
| 14 | $app = [ |
||
| 15 | 'controllerMap' => [ |
||
| 16 | 'rbac' => [ |
||
| 17 | '__class' => \hipanel\rbac\console\RbacController::class, |
||
| 18 | ], |
||
| 19 | ], |
||
| 20 | ]; |
||
| 21 | |||
| 22 | $components = [ |
||
| 23 | 'user' => [ |
||
| 24 | '__class' => \yii\web\User::class, |
||
| 25 | ], |
||
| 26 | ]; |
||
| 27 | |||
| 28 | return Buildtime::run(yii::is2()) ? $app : array_merge($components, ['app' => $app]); |
||
| 29 |
Let?s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let?s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: