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