Completed
Push — master ( b3e9d7...ede5a8 )
by Bill
01:28
created

ImageRecord::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace HustleWorks\Chute\DTO;
4
5
/**
6
 * ImageRecord
7
 *
8
 * This transfer object give details fo an Image Original
9
 *
10
 * @category TransferObject
11
 * @package  HustleWorks\Chute\DTO
12
 * @author   Don Herre <[email protected]>
13
 * @license  Proprietary and confidential
14
 * @link     http://hustleworks.com
15
 *
16
 * @property string $name;
17
 * @property string $disk;
18
 * @property string $filename
19
 * @property string $path
20
 * @property string $status
21
 * @property int    $size
22
 * @property int    $width
23
 * @property int    $height
24
 * @property string $mime_type
25
 * @property string $extension
26
 * @property string $uuid
27
 * @property string $alt
28
 * @property string $title
29
 * @property string $description
30
 * @property string $updated_at
31
 * @property string $created_at
32
 * @property string $id
33
 */
34
class ImageRecord extends TransferObject
35
{
36
    protected $id;
37
    protected $name;
38
    protected $disk;
39
    protected $filename;
40
    protected $path;
41
    protected $status;
42
    protected $size;
43
    protected $width;
44
    protected $height;
45
    protected $mime_type;
46
    protected $extension;
47
    protected $uuid;
48
    protected $alt;
49
    protected $title;
50
    protected $description;
51
    protected $updated_at;
52
    protected $created_at;
53
}