Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
57.14% covered (warning)
57.14%
4 / 7
75.00% covered (warning)
75.00%
3 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
Order
57.14% covered (warning)
57.14%
4 / 7
75.00% covered (warning)
75.00%
3 / 4
5.26
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getId
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getOrderLineList
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 addOrderLine
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace Apie\IntegrationTests\Apie\TypeDemo\Resources;
4
5use Apie\Core\Attributes\FakeCount;
6use Apie\Core\Attributes\RemovalCheck;
7use Apie\Core\Attributes\StaticCheck;
8use Apie\Core\Entities\EntityInterface;
9use Apie\IntegrationTests\Apie\TypeDemo\Entities\OrderLine;
10use Apie\IntegrationTests\Apie\TypeDemo\Enums\OrderStatus;
11use Apie\IntegrationTests\Apie\TypeDemo\Identifiers\OrderIdentifier;
12use Apie\IntegrationTests\Apie\TypeDemo\Lists\OrderLineList;
13
14#[RemovalCheck(new StaticCheck())]
15#[FakeCount(1)]
16class 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}