| Conditions | 5 |
| Paths | 5 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public static function create($type) |
||
| 16 | { |
||
| 17 | switch ($type) { |
||
| 18 | case null: |
||
| 19 | case 'none': |
||
| 20 | return new Uncompressed; |
||
| 21 | |||
| 22 | case 'gz': |
||
| 23 | case 'gzip': |
||
| 24 | return new Gzip; |
||
| 25 | |||
| 26 | default: |
||
| 27 | throw new InvalidArgumentException("Compression type '{$type}' is not supported."); |
||
| 28 | } |
||
| 29 | } |
||
| 30 | |||
| 69 |