1 | <?php |
||
22 | class ActiveFixture extends BaseActiveFixture |
||
23 | { |
||
24 | /** |
||
25 | * @var Connection|string the DB connection object or the application component ID of the DB connection. |
||
26 | * After the DbFixture object is created, if you want to change this property, you should only assign it |
||
27 | * with a DB connection object. |
||
28 | */ |
||
29 | public $db = 'elasticsearch'; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | public $index; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | public $type; |
||
40 | |||
41 | public function init() |
||
55 | |||
56 | /** |
||
57 | * Loads the fixture. |
||
58 | * |
||
59 | * The default implementation will first clean up the table by calling [[resetTable()]]. |
||
60 | * It will then populate the table with the data returned by [[getData()]]. |
||
61 | * |
||
62 | * If you override this method, you should consider calling the parent implementation |
||
63 | * so that the data returned by [[getData()]] can be populated into the table. |
||
64 | */ |
||
65 | public function load() |
||
74 | |||
75 | |||
76 | /** |
||
77 | * Returns the fixture data. |
||
78 | * |
||
79 | * This method is called by [[loadData()]] to get the needed fixture data. |
||
80 | * |
||
81 | * The default implementation will try to return the fixture data by including the external file specified by [[dataFile]]. |
||
82 | * The file should return an array of data rows (column name => column value), each corresponding to a row in the table. |
||
83 | * |
||
84 | * If the data file does not exist, an empty array will be returned. |
||
85 | * |
||
86 | * @return array the data rows to be inserted into the collection. |
||
87 | */ |
||
88 | protected function getData() |
||
101 | |||
102 | /** |
||
103 | * @return mixed |
||
104 | */ |
||
105 | private function resetType() |
||
118 | } |
||
119 |
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: