16 lines
259 B
PHP
Executable File
16 lines
259 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Intervention\Image\Modifiers;
|
|
|
|
use Intervention\Image\Drivers\SpecializableModifier;
|
|
|
|
class PixelateModifier extends SpecializableModifier
|
|
{
|
|
public function __construct(public int $size)
|
|
{
|
|
//
|
|
}
|
|
}
|