Server IP : 127.0.0.2 / Your IP : 3.148.231.72 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/jeremeamia/superclosure/src/Analyzer/Visitor/ |
Upload File : |
<?php namespace SuperClosure\Analyzer\Visitor; use SuperClosure\Exception\ClosureAnalysisException; use PhpParser\Node\Stmt\Namespace_ as NamespaceNode; use PhpParser\Node\Stmt\Trait_ as TraitNode; use PhpParser\Node\Stmt\Class_ as ClassNode; use PhpParser\Node\Expr\Closure as ClosureNode; use PhpParser\Node as AstNode; use PhpParser\NodeVisitorAbstract as NodeVisitor; /** * This is a visitor that extends the nikic/php-parser library and looks for a * closure node and its location. * * @internal */ final class ClosureLocatorVisitor extends NodeVisitor { /** * @var \ReflectionFunction */ private $reflection; /** * @var ClosureNode */ public $closureNode; /** * @var array */ public $location; /** * @param \ReflectionFunction $reflection */ public function __construct($reflection) { $this->reflection = $reflection; $this->location = [ 'class' => null, 'directory' => dirname($this->reflection->getFileName()), 'file' => $this->reflection->getFileName(), 'function' => $this->reflection->getName(), 'line' => $this->reflection->getStartLine(), 'method' => null, 'namespace' => null, 'trait' => null, ]; } public function enterNode(AstNode $node) { // Determine information about the closure's location if (!$this->closureNode) { if ($node instanceof NamespaceNode) { $namespace = $node->name !== null ? $node->name->toString() : null; $this->location['namespace'] = $namespace; } if ($node instanceof TraitNode) { $this->location['trait'] = (string) $node->name; $this->location['class'] = null; } elseif ($node instanceof ClassNode) { $this->location['class'] = (string) $node->name; $this->location['trait'] = null; } } // Locate the node of the closure if ($node instanceof ClosureNode) { if ($node->getAttribute('startLine') == $this->location['line']) { if ($this->closureNode) { $line = $this->location['file'] . ':' . $node->getAttribute('startLine'); throw new ClosureAnalysisException("Two closures were " . "declared on the same line ({$line}) of code. Cannot " . "determine which closure was the intended target."); } else { $this->closureNode = $node; } } } } public function leaveNode(AstNode $node) { // Determine information about the closure's location if (!$this->closureNode) { if ($node instanceof NamespaceNode) { $this->location['namespace'] = null; } if ($node instanceof TraitNode) { $this->location['trait'] = null; } elseif ($node instanceof ClassNode) { $this->location['class'] = null; } } } public function afterTraverse(array $nodes) { if ($this->location['class']) { $this->location['class'] = $this->location['namespace'] . '\\' . $this->location['class']; $this->location['method'] = "{$this->location['class']}::{$this->location['function']}"; } elseif ($this->location['trait']) { $this->location['trait'] = $this->location['namespace'] . '\\' . $this->location['trait']; $this->location['method'] = "{$this->location['trait']}::{$this->location['function']}"; // If the closure was declared in a trait, then we will do a best // effort guess on the name of the class that used the trait. It's // actually impossible at this point to know for sure what it is. if ($closureScope = $this->reflection->getClosureScopeClass()) { $this->location['class'] = $closureScope ? $closureScope->getName() : null; } elseif ($closureThis = $this->reflection->getClosureThis()) { $this->location['class'] = get_class($closureThis); } } } }