Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ItemLink |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var string the item name |
||
15 | */ |
||
16 | public $name; |
||
17 | |||
18 | /** |
||
19 | * @var string the item URL |
||
20 | */ |
||
21 | public $url; |
||
22 | |||
23 | /** |
||
24 | * @var Media the media item it represents |
||
25 | */ |
||
26 | public $media; |
||
27 | |||
28 | /** |
||
29 | * Class constructor |
||
30 | * @param string $name |
||
31 | * @param string $url |
||
32 | * @param Media $media |
||
33 | */ |
||
34 | public function __construct($name, $url, $media) |
||
42 |