Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
24 | abstract class DbFixture extends Fixture |
||
25 | { |
||
26 | /** |
||
27 | * @var Connection|array|string the DB connection object or the application component ID of the DB connection. |
||
28 | * After the DbFixture object is created, if you want to change this property, you should only assign it |
||
29 | * with a DB connection object. |
||
30 | * Starting from version 2.0.2, this can also be a configuration array for creating the object. |
||
31 | */ |
||
32 | public $db = 'db'; |
||
33 | |||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function init() |
||
44 |