Conditions | 3 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | 1 | public function __construct(?IIMTranslations $lang = null) |
|
22 | { |
||
23 | 1 | $this->setImLang($lang); |
|
24 | 1 | if (!function_exists('imagecreatefromxbm') || !function_exists('imagexbm')) { |
|
25 | // @codeCoverageIgnoreStart |
||
26 | throw new ImagesException($this->getImLang()->imImageMagicLibNotPresent()); |
||
27 | } |
||
51 |