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 | $components = [ |
||
15 | 'authManager' => \yii\rbac\CheckAccessInterface::class, |
||
16 | ]; |
||
17 | |||
18 | $singletons = [ |
||
19 | \yii\rbac\CheckAccessInterface::class => [ |
||
20 | '__class' => \hipanel\rbac\AuthManager::class, |
||
21 | ], |
||
22 | \hipanel\rbac\RbacIniterInterface::class => \hipanel\rbac\Initer::class, |
||
23 | \hipanel\rbac\console\converter\ConverterInterface::class => [ |
||
24 | '__class' => \hipanel\rbac\console\converter\PhpToNodeFilesConverter::class, |
||
25 | 'storageDir' => dirname(__DIR__) . '/js', |
||
26 | 'convertFile' => dirname(__DIR__) . '/src/files/source/tree.php', |
||
27 | ], |
||
28 | ]; |
||
29 | |||
30 | return Buildtime::run(yii::is3()) |
||
31 | ? array_merge($components, $singletons) |
||
32 | : ['components' => $components, 'container' => ['singletons' => $singletons]] |
||
33 | ; |
||
34 |
Let?s assume that you have a directory layout like this:
and let?s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are 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.php
However, as
OtherDir/Foo.php
does 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: