Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
11 | final class PersonLoader extends AbstractFixture |
||
12 | { |
||
13 | use ReflectionPropertyCapabilities; |
||
14 | |||
15 | public const PERSON_1_NAME = 'Joe Smith'; |
||
16 | public const PERSON_1_EMAIL = '[email protected]'; |
||
17 | public const PERSON_1_PASSWORD = 'foobar'; |
||
18 | public const PERSON_1_ID = '1dd60ffa-6e48-47f2-a03a-f89620c17e03'; |
||
19 | |||
20 | 6 | public function load(ObjectManager $manager) |
|
34 |