Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
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 | 29 | public function init() |
|
44 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.