| 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 | |||
| 14 | /** @var string|null */ |
||
| 15 | protected $localPath; |
||
| 16 | |||
| 17 | 11 | public function __construct($name, $localPath = null) |
|
| 18 | { |
||
| 19 | 11 | $this->name = $name; |
|
|
|
|||
| 20 | 11 | $this->localPath = $localPath; |
|
| 21 | 11 | } |
|
| 22 | |||
| 23 | 7 | public function __get($name) |
|
| 26 | } |
||
| 27 | |||
| 28 | 2 | public function __set($name, $value) |
|
| 33 |