| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | abstract class AbstractMatcher |
||
| 13 | { |
||
| 14 | /** @var mixed[] */ |
||
| 15 | protected $arguments = []; |
||
| 16 | |||
| 17 | public function __construct() |
||
| 20 | 59 | } |
|
| 21 | 59 | ||
| 22 | /** |
||
| 23 | * Match class condition |
||
| 24 | * |
||
| 25 | * @param ReflectionClass<object> $class |
||
| 26 | * @param mixed[] $arguments |
||
| 27 | * |
||
| 28 | * @return bool |
||
| 29 | */ |
||
| 30 | abstract public function matchesClass(ReflectionClass $class, array $arguments); |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Match method condition |
||
| 34 | * |
||
| 35 | * @param mixed[] $arguments |
||
| 36 | * |
||
| 37 | * @return bool |
||
| 38 | */ |
||
| 39 | abstract public function matchesMethod(ReflectionMethod $method, array $arguments); |
||
| 40 | |||
| 41 | /** |
||
| 42 | 44 | * Return matching condition arguments |
|
| 43 | * |
||
| 44 | 44 | * @return mixed[] |
|
| 45 | */ |
||
| 46 | public function getArguments() |
||
| 51 |
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: