D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
wabot.delyntro.com
/
vendor
/
intervention
/
gif
/
src
/
Blocks
/
Filename :
Header.php
back
Copy
<?php declare(strict_types=1); namespace Intervention\Gif\Blocks; use Intervention\Gif\AbstractEntity; class Header extends AbstractEntity { /** * Header signature */ public const SIGNATURE = 'GIF'; /** * Current GIF version */ protected string $version = '89a'; /** * Set GIF version * * @param string $value */ public function setVersion(string $value): self { $this->version = $value; return $this; } /** * Return current version * * @return string */ public function getVersion(): string { return $this->version; } }