1 | <?php |
||
37 | abstract class AbstractSeeder implements Seeder |
||
38 | { |
||
39 | /** |
||
40 | * connection |
||
41 | * |
||
42 | * @var Connection $connection |
||
43 | */ |
||
44 | protected $connection = null; |
||
45 | |||
46 | /** |
||
47 | * factory |
||
48 | * |
||
49 | * @var SeederFactory $factory |
||
50 | */ |
||
51 | protected $factory = null; |
||
52 | |||
53 | /** |
||
54 | * AbstractSeeder constructor. |
||
55 | */ |
||
56 | public function __construct() |
||
63 | |||
64 | /** |
||
65 | * setConnection |
||
66 | * |
||
67 | * @param Connection $connection |
||
68 | * @return void |
||
69 | */ |
||
70 | public function setConnection(Connection $connection) |
||
74 | |||
75 | /** |
||
76 | * preProcess |
||
77 | * |
||
78 | * @return void |
||
79 | */ |
||
80 | abstract protected function before(); |
||
81 | |||
82 | /** |
||
83 | * after |
||
84 | * |
||
85 | * @return void |
||
86 | */ |
||
87 | abstract protected function after(); |
||
88 | |||
89 | /** |
||
90 | * seed |
||
91 | * |
||
92 | * @throws Connection\NotFoundException |
||
93 | * @return bool |
||
94 | */ |
||
95 | final public function seed() |
||
112 | |||
113 | protected function getKeys() |
||
124 | |||
125 | /** |
||
126 | * @return string |
||
127 | */ |
||
128 | public function getClass() |
||
132 | |||
133 | /** |
||
134 | * @param $className |
||
135 | * @throws \TYPO3\CMS\Extbase\Object\InvalidClassException |
||
136 | * @return string |
||
137 | */ |
||
138 | final protected function call($className) |
||
150 | } |
||
151 |
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: