BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
intervention
/
gif
/
src
/
Blocks
📤 Upload
📝 New File
📁 New Folder
Close
Editing: PlainTextExtension.php
<?php declare(strict_types=1); namespace Intervention\Gif\Blocks; use Intervention\Gif\AbstractExtension; class PlainTextExtension extends AbstractExtension { public const LABEL = "\x01"; /** * Array of text * * @var array<string> */ protected array $text = []; /** * Get current text * * @return array<string> */ public function getText(): array { return $this->text; } /** * Add text * * @param string $text */ public function addText(string $text): self { $this->text[] = $text; return $this; } /** * Set text array of extension * * @param array<string> $text */ public function setText(array $text): self { $this->text = $text; return $this; } /** * Determine if any text is present * * @return bool */ public function hasText(): bool { return $this->text !== []; } }
Save
Cancel