mirror of
https://github.com/Intervention/image.git
synced 2025-08-29 16:50:07 +02:00
Rename class
This commit is contained in:
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class Base64ImageDecoder extends AbstractDecoder
|
class Base64ImageDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class BinaryImageDecoder extends AbstractDecoder
|
class BinaryImageDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class DataUriImageDecoder extends AbstractDecoder
|
class DataUriImageDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class FilePathImageDecoder extends AbstractDecoder
|
class FilePathImageDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class FilePointerImageDecoder extends AbstractDecoder
|
class FilePointerImageDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class ImageObjectDecoder extends AbstractDecoder
|
class ImageObjectDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -8,7 +8,7 @@ use Intervention\Image\Interfaces\DecoderInterface;
|
|||||||
use Intervention\Image\Interfaces\ImageInterface;
|
use Intervention\Image\Interfaces\ImageInterface;
|
||||||
use Intervention\Image\Interfaces\SpecializableInterface;
|
use Intervention\Image\Interfaces\SpecializableInterface;
|
||||||
|
|
||||||
abstract class AbstractDecoder implements DecoderInterface, SpecializableInterface
|
abstract class SpecializableDecoder implements DecoderInterface, SpecializableInterface
|
||||||
{
|
{
|
||||||
public function decode(mixed $input): ImageInterface|ColorInterface
|
public function decode(mixed $input): ImageInterface|ColorInterface
|
||||||
{
|
{
|
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Decoders;
|
namespace Intervention\Image\Decoders;
|
||||||
|
|
||||||
class SplFileInfoImageDecoder extends AbstractDecoder
|
class SplFileInfoImageDecoder extends SpecializableDecoder
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user