1 | <?php |
||
4 | class BreadCrumb { |
||
5 | |||
6 | /** @var string */ |
||
7 | private $target; |
||
8 | |||
9 | /** @var string */ |
||
10 | private $caption; |
||
11 | |||
12 | /** |
||
13 | * @param string $caption |
||
14 | * @param string $target |
||
15 | */ |
||
16 | public function __construct($caption, $target) { |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getCaption() { |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getTarget() { |
||
34 | } |