Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class ButtonProvider implements ButtonProviderInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $title; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $target; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | private $link; |
||
41 | |||
42 | public function __construct(string $title, string $link, string $target = '') |
||
47 | } |
||
48 | |||
49 | public function getTitle(): string |
||
52 | } |
||
53 | |||
54 | public function getLink(): string |
||
57 | } |
||
58 | |||
59 | public function getTarget(): string |
||
64 |