Файл: vendor/intervention/gif/src/Blocks/Header.php
Строк: 33
<?php
declare(strict_types=1);
namespace InterventionGifBlocks;
use InterventionGifAbstractEntity;
class Header extends AbstractEntity
{
/**
* Header signature.
*/
public const SIGNATURE = 'GIF';
/**
* Current GIF version.
*/
protected string $version = '89a';
/**
* Set GIF version.
*/
public function setVersion(string $value): self
{
$this->version = $value;
return $this;
}
/**
* Return current version.
*/
public function version(): string
{
return $this->version;
}
}