| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class Image |
||
| 7 | { |
||
| 8 | const TYPE_USERPIC = 'userpic'; |
||
| 9 | |||
| 10 | const SIZE_ICON = 'icon'; |
||
| 11 | const SIZE_SMALL = 'small'; |
||
| 12 | const SIZE_MEDIUM = 'medium'; |
||
| 13 | const SIZE_ORIGINAL = 'original'; |
||
| 14 | |||
| 15 | public $id; |
||
| 16 | |||
| 17 | public $type; |
||
| 18 | |||
| 19 | public $size; |
||
| 20 | |||
| 21 | public $width; |
||
| 22 | |||
| 23 | public $height; |
||
| 24 | |||
| 25 | public function __construct(array $data) |
||
| 30 |