Файл: vendor/intervention/image/src/Drivers/Gd/Analyzers/ColorspaceAnalyzer.php
Строк: 42
<?php
declare(strict_types=1);
namespace InterventionImageDriversGdAnalyzers;
use InterventionImageAnalyzersColorspaceAnalyzer as GenericColorspaceAnalyzer;
use InterventionImageColorsRgbColorspace;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesSpecializedInterface;
class ColorspaceAnalyzer extends GenericColorspaceAnalyzer implements SpecializedInterface
{
/**
* {@inheritdoc}
*
* @see AnalyzerInterface::analyze()
*/
public function analyze(ImageInterface $image): mixed
{
return new Colorspace();
}
}