autowp/image

View on GitHub
src/Processor/AbstractProcessor.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace Autowp\Image\Processor;

use Imagick;

abstract class AbstractProcessor
{
    abstract public function process(Imagick $imagick): void;
}