| Conditions | 3 | 
| Paths | 4 | 
| Total Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 44 | public function load(ImageInterface $image, array $options = []) | ||
| 45 |     { | ||
| 46 | $x = isset($options['start'][0]) ? $options['start'][0] : null; | ||
| 47 | $y = isset($options['start'][1]) ? $options['start'][1] : null; | ||
| 48 | |||
| 49 | $file = $this->projectDir . '/' . $options['image']; | ||
| 50 | |||
| 51 |         if (!file_exists($file) { | ||
| 52 | @trigger_error( | ||
| 53 | 'The ' . $file . ' does not exists, change the path based on kernel.project_dir parameter', | ||
| 64 |