| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Image |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $name; |
||
| 13 | 2 | ||
| 14 | /** @var string|null */ |
||
| 15 | 2 | protected $localPath; |
|
| 16 | 2 | ||
| 17 | 2 | public function __construct($name, $localPath = null) |
|
| 18 | { |
||
| 19 | 2 | $this->name = $name; |
|
|
|
|||
| 20 | $this->localPath = $localPath; |
||
| 21 | 2 | } |
|
| 22 | |||
| 23 | public function __get($name) |
||
| 26 | } |
||
| 27 | |||
| 28 | public function __set($name, $value) |
||
| 33 |