Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 3 | private static function createFromArray(array $category): Category |
|
39 | { |
||
40 | 3 | return Category::create( |
|
41 | 3 | Uuid::fromString($category['uuid']), |
|
42 | 3 | $category['name'], |
|
43 | 3 | $category['etag'], |
|
44 | 3 | new DateTime($category['updated']), |
|
45 | 3 | Uuid::fromString($category['updatedBy']), |
|
46 | 3 | new DateTime($category['created']) |
|
47 | ); |
||
48 | } |
||
49 | } |
||
50 |