Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function __construct($format = 'PNG') |
||
37 | { |
||
38 | $formats = array( |
||
39 | 'PNG', |
||
40 | 'GIF', |
||
41 | 'JPEG', |
||
42 | 'PDF', |
||
43 | ); |
||
44 | |||
45 | if (!in_array(strtoupper($format), $formats)) { |
||
46 | throw new \InvalidArgumentException('Output format must be PNG, GIF, JPEG or PDF'); |
||
47 | } |
||
48 | |||
49 | $this->format = strtoupper($format); |
||
50 | } |
||
51 | |||
73 |