We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58eba4d commit b7a5632Copy full SHA for b7a5632
src/InputHandler.php
@@ -21,6 +21,7 @@
21
use Intervention\Image\Decoders\EncodedImageObjectDecoder;
22
use Intervention\Image\Decoders\FilePathImageDecoder;
23
use Intervention\Image\Decoders\FilePointerImageDecoder;
24
+use Intervention\Image\Decoders\ImageObjectDecoder;
25
use Intervention\Image\Decoders\NativeObjectDecoder;
26
use Intervention\Image\Decoders\SplFileInfoImageDecoder;
27
use Intervention\Image\Exceptions\DriverException;
@@ -38,6 +39,7 @@ class InputHandler implements InputHandlerInterface
38
39
* All available image decoders.
40
*/
41
public const array IMAGE_DECODERS = [
42
+ ImageObjectDecoder::class,
43
NativeObjectDecoder::class,
44
FilePointerImageDecoder::class,
45
SplFileInfoImageDecoder::class,
0 commit comments