1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-21 05:01:20 +02:00

Fix wrong exception types

This commit is contained in:
Oliver Vogel
2024-01-07 10:06:33 +01:00
parent 14b64d0611
commit 757226b051
3 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
namespace Intervention\Image\Encoders; namespace Intervention\Image\Encoders;
use Intervention\Image\Exceptions\EncoderException;
use Intervention\Image\Interfaces\EncodedImageInterface; use Intervention\Image\Interfaces\EncodedImageInterface;
use Intervention\Image\Interfaces\EncoderInterface; use Intervention\Image\Interfaces\EncoderInterface;
use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\ImageInterface;

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Encoders; namespace Intervention\Image\Encoders;
use Intervention\Gif\Exception\EncoderException; use Intervention\Image\Exceptions\EncoderException;
use Intervention\Image\Interfaces\EncodedImageInterface; use Intervention\Image\Interfaces\EncodedImageInterface;
use Intervention\Image\Interfaces\EncoderInterface; use Intervention\Image\Interfaces\EncoderInterface;
use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\ImageInterface;

View File

@@ -3,7 +3,6 @@
namespace Intervention\Image; namespace Intervention\Image;
use Traversable; use Traversable;
use Intervention\Gif\Exception\EncoderException;
use Intervention\Image\Analyzers\ColorspaceAnalyzer; use Intervention\Image\Analyzers\ColorspaceAnalyzer;
use Intervention\Image\Analyzers\HeightAnalyzer; use Intervention\Image\Analyzers\HeightAnalyzer;
use Intervention\Image\Analyzers\PixelColorAnalyzer; use Intervention\Image\Analyzers\PixelColorAnalyzer;
@@ -23,6 +22,7 @@ use Intervention\Image\Encoders\MediaTypeEncoder;
use Intervention\Image\Encoders\PngEncoder; use Intervention\Image\Encoders\PngEncoder;
use Intervention\Image\Encoders\TiffEncoder; use Intervention\Image\Encoders\TiffEncoder;
use Intervention\Image\Encoders\WebpEncoder; use Intervention\Image\Encoders\WebpEncoder;
use Intervention\Image\Exceptions\EncoderException;
use Intervention\Image\Geometry\Factories\CircleFactory; use Intervention\Image\Geometry\Factories\CircleFactory;
use Intervention\Image\Geometry\Factories\EllipseFactory; use Intervention\Image\Geometry\Factories\EllipseFactory;
use Intervention\Image\Geometry\Factories\LineFactory; use Intervention\Image\Geometry\Factories\LineFactory;