| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class ImageBuilderSplFileObjectStrategy implements ImageBuilderStrategyInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param $source |
||
| 14 | * @return bool |
||
| 15 | */ |
||
| 16 | public function support($source) |
||
| 17 | { |
||
| 18 | return is_object($source) and $source instanceof \SplFileObject; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param \SplFileObject $source |
||
| 23 | * @return ImageBuilder |
||
| 24 | * @throws \Exception |
||
| 25 | */ |
||
| 26 | public function getImageBuilder($source) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |