| 1 | <?php |
||
| 11 | class VideoManager implements VideoManagerInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @Type("integer") |
||
| 15 | */ |
||
| 16 | private $id; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @Type("string") |
||
| 20 | */ |
||
| 21 | private $name; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return int |
||
| 25 | */ |
||
| 26 | public function getId() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param $id integer |
||
| 33 | * |
||
| 34 | * @return VideoManager |
||
| 35 | */ |
||
| 36 | public function setId($id) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getName() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param $name string |
||
| 53 | * |
||
| 54 | * @return VideoManager |
||
| 55 | */ |
||
| 56 | public function setName($name) |
||
| 62 | } |
||
| 63 |