Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
6 / 6
CRAP
100.00% covered (success)
100.00%
1 / 1
CompositeValueObjectExample
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
6 / 6
6
100.00% covered (success)
100.00%
1 / 1
 getString
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getInteger
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getFloatingPoint
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getTrueOrFalse
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getMixed
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getColor
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Fixtures\ValueObjects;
3
4use Apie\Core\ValueObjects\CompositeValueObject;
5use Apie\Core\ValueObjects\Interfaces\ValueObjectInterface;
6use Apie\Fixtures\Enums\ColorEnum;
7
8class CompositeValueObjectExample implements ValueObjectInterface
9{
10    use CompositeValueObject;
11
12    private string $string;
13
14    private int $integer;
15
16    private float $floatingPoint;
17
18    private bool $trueOrFalse;
19
20    private mixed $mixed;
21
22    private ColorEnum $color;
23
24    public function getString(): string
25    {
26        return $this->string;
27    }
28
29    public function getInteger(): int
30    {
31        return $this->integer;
32    }
33
34    public function getFloatingPoint(): float
35    {
36        return $this->floatingPoint;
37    }
38
39    public function getTrueOrFalse(): bool
40    {
41        return $this->trueOrFalse;
42    }
43
44    public function getMixed(): mixed
45    {
46        return $this->mixed;
47    }
48
49    public function getColor(): ColorEnum
50    {
51        return $this->color;
52    }
53}