Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Result |
||
8 | { |
||
9 | private $result; |
||
10 | |||
11 | private $url; |
||
12 | |||
13 | public function getResult(): bool |
||
16 | } |
||
17 | |||
18 | public function setResult($result): self |
||
19 | { |
||
20 | $this->result = $result; |
||
21 | return $this; |
||
22 | } |
||
23 | |||
24 | public function getUrl(): string |
||
25 | { |
||
26 | return $this->url; |
||
27 | } |
||
28 | |||
29 | public function setUrl($url): self |
||
33 | } |
||
34 | |||
35 | } |