Extend Image class. Separate to ImageVariant. Remove _is_new_record.

This commit is contained in:
Alexander Demidov
2013-05-27 12:49:32 +04:00
parent 47d0c54ef1
commit 4ace9e1b02
5 changed files with 97 additions and 77 deletions

9
ImageVariant.class.php Normal file
View File

@ -0,0 +1,9 @@
<?php
class ImageVariant extends File
{
public $width;
public $height;
public $type;
public $size;
}