| 1 | <?php |
||
| 12 | abstract class GridBuilderTestCase extends TestCase |
||
|
1 ignored issue
–
show
|
|||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ViewFactory |
||
| 16 | */ |
||
| 17 | protected $view; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var Request |
||
| 21 | */ |
||
| 22 | protected $request; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var GridHelper |
||
| 26 | */ |
||
| 27 | protected $gridHelper; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var ValidationFactory |
||
| 31 | */ |
||
| 32 | protected $validator; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var HtmlBuilder |
||
| 36 | */ |
||
| 37 | protected $htmlBuilder; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var FormBuilder |
||
| 41 | */ |
||
| 42 | protected $formBuilder; |
||
| 43 | |||
| 44 | public function setUp() |
||
| 57 | |||
| 58 | public function tearDown() |
||
| 62 | } |
||
| 63 |
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: