Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
53 | 2 | private function defineContentType(&$name, &$content) |
|
54 | { |
||
55 | 2 | $info = pathinfo($name); |
|
56 | 2 | if (isset($info['extension']) === false) { |
|
57 | 1 | $info['extension'] = 'svg'; |
|
58 | 1 | } |
|
59 | |||
60 | 2 | if (strtolower($info['extension']) === 'svgz') { |
|
61 | 1 | $content = gzencode($content, 9); |
|
62 | 1 | } |
|
63 | |||
64 | 2 | $name = $info['filename'] . "." . $info['extension']; |
|
65 | } |
||
66 | } |