Server IP : 66.29.132.124 / Your IP : 3.145.168.68 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/vendor/opis/closure/src/ |
Upload File : |
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ namespace Opis\Closure; use Closure; use SuperClosure\Analyzer\ClosureAnalyzer; /** * @deprecated We'll remove this class */ class Analyzer extends ClosureAnalyzer { /** * Analyzer a given closure. * * @param Closure $closure * * @return array */ public function analyze(Closure $closure) { $reflection = new ReflectionClosure($closure); $scope = $reflection->getClosureScopeClass(); $data = [ 'reflection' => $reflection, 'code' => $reflection->getCode(), 'hasThis' => $reflection->isBindingRequired(), 'context' => $reflection->getUseVariables(), 'hasRefs' => false, 'binding' => $reflection->getClosureThis(), 'scope' => $scope ? $scope->getName() : null, 'isStatic' => $reflection->isStatic(), ]; return $data; } /** * @param array $data * @return mixed */ protected function determineCode(array &$data) { return null; } /** * @param array $data * @return mixed */ protected function determineContext(array &$data) { return null; } }