📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 06:00:10
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
slevomat
/
coding-standard
/
SlevomatCodingStandard
/
Helpers
📍 /opt/cpanel/ea-wappspector/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers
🔄 Refresh
✏️
Editing: TokenPointerOutOfBoundsException.php
Read Only
<?php declare(strict_types = 1); namespace SlevomatCodingStandard\Helpers; use Exception; use Throwable; use function sprintf; /** * @internal */ class TokenPointerOutOfBoundsException extends Exception { private int $pointer; private int $lastTokenPointer; public function __construct(int $pointer, int $lastTokenPointer, ?Throwable $previous = null) { parent::__construct( sprintf( 'Attempted access to token pointer %d, last token pointer is %d', $pointer, $lastTokenPointer, ), 0, $previous, ); $this->pointer = $pointer; $this->lastTokenPointer = $lastTokenPointer; } public function getPointer(): int { return $this->pointer; } public function getLastTokenPointer(): int { return $this->lastTokenPointer; } }
💾 Save Changes
❌ Cancel