!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/doctrine/lexer/src/   drwxr-xr-x
Free 28.28 GB of 117.98 GB (23.97%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Token.php (3.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Doctrine\Common\Lexer;

use 
ArrayAccess;
use 
Doctrine\Deprecations\Deprecation;
use 
ReturnTypeWillChange;
use 
UnitEnum;

use function 
in_array;

/**
 * @template T of UnitEnum|string|int
 * @template V of string|int
 * @implements ArrayAccess<string,mixed>
 */
final class Token implements ArrayAccess
{
    
/**
     * The string value of the token in the input string
     *
     * @readonly
     * @var V
     */
    
public $value;

    
/**
     * The type of the token (identifier, numeric, string, input parameter, none)
     *
     * @readonly
     * @var T|null
     */
    
public $type;

    
/**
     * The position of the token in the input string
     *
     * @readonly
     * @var int
     */
    
public $position;

    
/**
     * @param V      $value
     * @param T|null $type
     */
    
public function __construct($value$typeint $position)
    {
        
$this->value    $value;
        
$this->type     $type;
        
$this->position $position;
    }

    
/** @param T ...$types */
    
public function isA(...$types): bool
    
{
        return 
in_array($this->type$typestrue);
    }

    
/**
     * @deprecated Use the value, type or position property instead
     * {@inheritDoc}
     */
    
public function offsetExists($offset): bool
    
{
        
Deprecation::trigger(
            
'doctrine/lexer',
            
'https://github.com/doctrine/lexer/pull/79',
            
'Accessing %s properties via ArrayAccess is deprecated, use the value, type or position property instead',
            
self::class
        );

        return 
in_array($offset, ['value''type''position'], true);
    }

    
/**
     * @deprecated Use the value, type or position property instead
     * {@inheritDoc}
     *
     * @param O $offset
     *
     * @return mixed
     * @psalm-return (
     *     O is 'value'
     *     ? V
     *     : (
     *         O is 'type'
     *         ? T|null
     *         : (
     *             O is 'position'
     *             ? int
     *             : mixed
     *         )
     *     )
     * )
     *
     * @template O of array-key
     */
    
#[ReturnTypeWillChange]
    public function 
offsetGet($offset)
    {
        
Deprecation::trigger(
            
'doctrine/lexer',
            
'https://github.com/doctrine/lexer/pull/79',
            
'Accessing %s properties via ArrayAccess is deprecated, use the value, type or position property instead',
            
self::class
        );

        return 
$this->$offset;
    }

    
/**
     * @deprecated no replacement planned
     * {@inheritDoc}
     */
    
public function offsetSet($offset$value): void
    
{
        
Deprecation::trigger(
            
'doctrine/lexer',
            
'https://github.com/doctrine/lexer/pull/79',
            
'Setting %s properties via ArrayAccess is deprecated',
            
self::class
        );

        
$this->$offset $value;
    }

    
/**
     * @deprecated no replacement planned
     * {@inheritDoc}
     */
    
public function offsetUnset($offset): void
    
{
        
Deprecation::trigger(
            
'doctrine/lexer',
            
'https://github.com/doctrine/lexer/pull/79',
            
'Setting %s properties via ArrayAccess is deprecated',
            
self::class
        );

        
$this->$offset null;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.004 ]--