Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
93.33% |
14 / 15 |
|
87.50% |
7 / 8 |
CRAP | |
0.00% |
0 / 1 |
Request | |
93.33% |
14 / 15 |
|
87.50% |
7 / 8 |
15.07 | |
0.00% |
0 / 1 |
withReference | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |||
hasAppointmentFromProviderData | |
100.00% |
6 / 6 |
|
100.00% |
1 / 1 |
8 | |||
getSource | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getGroup | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getLink | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getName | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getAdditionalData | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
__toString | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace BO\Zmsentities; |
4 | |
5 | class Request extends Schema\Entity |
6 | { |
7 | const PRIMARY = 'id'; |
8 | |
9 | public static $schema = "request.json"; |
10 | |
11 | public function withReference($additionalData = []) |
12 | { |
13 | $additionalData['id'] = $this->getId(); |
14 | $additionalData['name'] = $this->getName(); |
15 | return parent::withReference($additionalData); |
16 | } |
17 | |
18 | public function hasAppointmentFromProviderData() |
19 | { |
20 | if (isset($this['data']) && isset($this['data']['locations'])) { |
21 | foreach ($this['data']['locations'] as $provider) { |
22 | if ( |
23 | (!isset($provider['appointment']['external']) || !$provider['appointment']['external']) |
24 | && isset($provider['appointment']['allowed']) && $provider['appointment']['allowed'] |
25 | ) { |
26 | return true; |
27 | } |
28 | } |
29 | } |
30 | return false; |
31 | } |
32 | |
33 | public function getSource() |
34 | { |
35 | return $this->toProperty()->source->get(); |
36 | } |
37 | |
38 | public function getGroup() |
39 | { |
40 | return $this->toProperty()->group->get(); |
41 | } |
42 | |
43 | public function getLink() |
44 | { |
45 | return $this->toProperty()->link->get(); |
46 | } |
47 | |
48 | public function getName() |
49 | { |
50 | return $this->toProperty()->name->get(); |
51 | } |
52 | |
53 | public function getAdditionalData() |
54 | { |
55 | return $this->toProperty()->data->get(); |
56 | } |
57 | |
58 | public function __toString() |
59 | { |
60 | return $this->getName(); |
61 | } |
62 | } |