| 1 | <?php namespace Modules\Media\Image\Intervention\Manipulations; |
||
| 5 | class Flip implements ImageHandlerInterface |
||
| 6 | { |
||
| 7 | private $defaults = [ |
||
| 8 | 'mode' => 'h', |
||
| 9 | ]; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Handle the image manipulation request |
||
| 13 | * @param \Intervention\Image\Image $image |
||
| 14 | * @param array $options |
||
| 15 | * @return \Intervention\Image\Image |
||
| 16 | */ |
||
| 17 | public function handle($image, $options) |
||
| 23 | } |
||
| 24 |