getSize() > 255) { throw new FormatException( 'Data Sub-Block can not have a block size larger than 255 bytes.' ); } } /** * Return size of current block * * @return int */ public function getSize(): int { return strlen($this->value); } /** * Return block value * * @return string */ public function getValue(): string { return $this->value; } }