| Conditions | 3 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public static function find() |
||
| 19 | { |
||
| 20 | foreach (self::FACTORIES as $backend) { |
||
| 21 | if ($backend::supported()) { |
||
| 22 | return new $backend; |
||
| 23 | } |
||
| 24 | } |
||
| 25 | $message = 'Couldn\'t find any image processing backend, please ' . |
||
| 26 | 'install gd (preferred) / imagick.'; |
||
| 27 | throw new RuntimeException($message); |
||
| 28 | } |
||
| 30 |