Image.php 449 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace GraphQL\Examples\Blog\Data;
  3. use GraphQL\Utils\Utils;
  4. class Image
  5. {
  6. const TYPE_USERPIC = 'userpic';
  7. const SIZE_ICON = 'icon';
  8. const SIZE_SMALL = 'small';
  9. const SIZE_MEDIUM = 'medium';
  10. const SIZE_ORIGINAL = 'original';
  11. public $id;
  12. public $type;
  13. public $size;
  14. public $width;
  15. public $height;
  16. public function __construct(array $data)
  17. {
  18. Utils::assign($this, $data);
  19. }
  20. }