Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | 14 | public function load(string $path) |
|
32 | { |
||
33 | 14 | $result = imagecreatefrompng($path); |
|
34 | 14 | if (false === $result) { |
|
35 | // @codeCoverageIgnoreStart |
||
36 | throw new ImagesException($this->getLang()->imCannotCreateFromResource()); |
||
37 | } |
||
38 | // @codeCoverageIgnoreEnd |
||
39 | 14 | return $result; |
|
40 | } |
||
51 |