1 | <?php |
||
11 | class Icon |
||
12 | { |
||
13 | const APPLE_TOUCH = 'apple-touch-icon'; |
||
14 | const FAVICON = 'favicon'; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $type; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $href; |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | private $size; |
||
30 | |||
31 | public function __construct($type, $href, array $size) |
||
37 | |||
38 | public function getType() |
||
42 | |||
43 | public function getHref() |
||
47 | |||
48 | public function getSize() |
||
52 | |||
53 | public function getWidth() |
||
57 | |||
58 | public function getHeight() |
||
62 | } |