for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace TYPO3Fluid\Fluid\Core\Parser;
class Source
{
public $source = '';
public $bytes = [];
public $length = 0;
public function __construct(string $source)
$this->source = $source;
$this->bytes = unpack('C*', $source);
$this->length = count($this->bytes);
}