1 | <?php |
||
5 | class Image |
||
6 | { |
||
7 | protected $name; |
||
8 | protected $id; |
||
9 | |||
10 | 1 | protected function __construct($imageJson) { |
|
14 | |||
15 | /** |
||
16 | * @param $imageJson |
||
17 | * @return static |
||
18 | */ |
||
19 | 1 | static public function makeFromImageJson($imageJson) { |
|
22 | |||
23 | /** |
||
24 | * @return mixed |
||
25 | */ |
||
26 | 1 | public function getName() { |
|
29 | |||
30 | /** |
||
31 | * @return mixed |
||
32 | */ |
||
33 | 1 | public function getId() { |
|
36 | } |
||
37 |