1 | <?php |
||
11 | class Tab |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | public $title; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | public $name; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | public $url; |
||
28 | |||
29 | /** |
||
30 | * Tab constructor. |
||
31 | * |
||
32 | * @param string $title |
||
33 | * @param string $name |
||
34 | * @param string $url |
||
35 | */ |
||
36 | public function __construct($title, $name, $url) |
||
42 | |||
43 | /** |
||
44 | * @return array |
||
45 | */ |
||
46 | public function toArray() |
||
54 | } |