| 1 | <?php |
||
| 18 | abstract class BaseToken implements TokenInterface |
||
| 19 | { |
||
| 20 | use Renderable; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var int|null |
||
| 24 | */ |
||
| 25 | private $length; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var int|null |
||
| 29 | */ |
||
| 30 | private $bytes; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return int |
||
| 34 | */ |
||
| 35 | public function getBytes(): int |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return int |
||
| 46 | */ |
||
| 47 | public function getLength(): int |
||
| 55 | } |
||
| 56 |