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

Rename class

This commit is contained in:
Oliver Vogel 2024-01-16 10:53:30 +01:00
parent 828e3a204e
commit d1fdc600aa
8 changed files with 8 additions and 8 deletions

View File

@ -2,6 +2,6 @@
namespace Intervention\Image\Analyzers;
class ColorspaceAnalyzer extends AbstractAnalyzer
class ColorspaceAnalyzer extends SpecializableAnalyzer
{
}

View File

@ -2,6 +2,6 @@
namespace Intervention\Image\Analyzers;
class HeightAnalyzer extends AbstractAnalyzer
class HeightAnalyzer extends SpecializableAnalyzer
{
}

View File

@ -2,7 +2,7 @@
namespace Intervention\Image\Analyzers;
class PixelColorAnalyzer extends AbstractAnalyzer
class PixelColorAnalyzer extends SpecializableAnalyzer
{
public function __construct(
public int $x,

View File

@ -2,7 +2,7 @@
namespace Intervention\Image\Analyzers;
class PixelColorsAnalyzer extends AbstractAnalyzer
class PixelColorsAnalyzer extends SpecializableAnalyzer
{
public function __construct(
public int $x,

View File

@ -2,6 +2,6 @@
namespace Intervention\Image\Analyzers;
class ProfileAnalyzer extends AbstractAnalyzer
class ProfileAnalyzer extends SpecializableAnalyzer
{
}

View File

@ -2,6 +2,6 @@
namespace Intervention\Image\Analyzers;
class ResolutionAnalyzer extends AbstractAnalyzer
class ResolutionAnalyzer extends SpecializableAnalyzer
{
}

View File

@ -6,7 +6,7 @@ use Intervention\Image\Interfaces\AnalyzerInterface;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\SpecializableInterface;
abstract class AbstractAnalyzer implements AnalyzerInterface, SpecializableInterface
abstract class SpecializableAnalyzer implements AnalyzerInterface, SpecializableInterface
{
/**
* {@inheritdoc}

View File

@ -2,6 +2,6 @@
namespace Intervention\Image\Analyzers;
class WidthAnalyzer extends AbstractAnalyzer
class WidthAnalyzer extends SpecializableAnalyzer
{
}