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