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