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