Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | class Image extends Component |
||
32 | { |
||
33 | |||
34 | /** |
||
35 | * default driver: GD, Imagick |
||
36 | * @var string |
||
37 | */ |
||
38 | public $driver; |
||
39 | |||
40 | /** |
||
41 | * The File path to the Watermark File |
||
42 | * @var string |
||
43 | */ |
||
44 | public $watermarkFile; |
||
45 | |||
46 | /** |
||
47 | * @param array $config |
||
48 | * @return Thumb |
||
49 | */ |
||
50 | public function getThumb($config) |
||
62 | } |