Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
57.14% |
4 / 7 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
Order | |
57.14% |
4 / 7 |
|
75.00% |
3 / 4 |
5.26 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
getId | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getOrderLineList | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
addOrderLine | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace Apie\IntegrationTests\Apie\TypeDemo\Resources; |
4 | |
5 | use Apie\Core\Attributes\FakeCount; |
6 | use Apie\Core\Attributes\RemovalCheck; |
7 | use Apie\Core\Attributes\StaticCheck; |
8 | use Apie\Core\Entities\EntityInterface; |
9 | use Apie\IntegrationTests\Apie\TypeDemo\Entities\OrderLine; |
10 | use Apie\IntegrationTests\Apie\TypeDemo\Enums\OrderStatus; |
11 | use Apie\IntegrationTests\Apie\TypeDemo\Identifiers\OrderIdentifier; |
12 | use Apie\IntegrationTests\Apie\TypeDemo\Lists\OrderLineList; |
13 | |
14 | #[RemovalCheck(new StaticCheck())] |
15 | #[FakeCount(1)] |
16 | class Order implements EntityInterface |
17 | { |
18 | private OrderIdentifier $id; |
19 | |
20 | private OrderStatus $orderStatus; |
21 | |
22 | public function __construct(private OrderLineList $orderLineList) |
23 | { |
24 | $this->id = new OrderIdentifier(null); |
25 | $this->orderStatus = OrderStatus::DRAFT; |
26 | } |
27 | |
28 | public function getId(): OrderIdentifier |
29 | { |
30 | return $this->id; |
31 | } |
32 | |
33 | public function getOrderLineList(): OrderLineList |
34 | { |
35 | return $this->orderLineList; |
36 | } |
37 | |
38 | public function addOrderLine(OrderLine $orderLine): Order |
39 | { |
40 | $this->orderStatus->ensureDraft(); |
41 | $this->orderLineList[] = $orderLine; |
42 | |
43 | return $this; |
44 | } |
45 | } |