16 lines
299 B
PHP
Executable File
16 lines
299 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Intervention\Image\Modifiers;
|
|
|
|
use Intervention\Image\Drivers\SpecializableModifier;
|
|
|
|
class SliceAnimationModifier extends SpecializableModifier
|
|
{
|
|
public function __construct(public int $offset = 0, public ?int $length = null)
|
|
{
|
|
//
|
|
}
|
|
}
|