Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
31 | 6 | public function load(string $path) |
|
32 | { |
||
33 | 6 | $content = @file_get_contents($path); |
|
34 | 6 | if (empty($content)) { |
|
35 | 1 | throw new ImagesException($this->getImLang()->imCannotCreateFromResource(),ImagesException::FORMAT_AUTO_NO_FILE); |
|
36 | } |
||
37 | 5 | $result = @imagecreatefromstring($content); |
|
38 | 5 | if (false === $result) { |
|
39 | 4 | throw new ImagesException($this->getImLang()->imCannotCreateFromResource(), ImagesException::FORMAT_AUTO_NO_IMAGE); |
|
40 | } |
||
41 | 1 | return $result; |
|
42 | } |
||
49 |