EBF |XAEB:kBBZ/BpBwgVFBEBEw.B}l &(Bph8BB;|i–BHB 0긓BUk2ڹBBJ]I4-(BFBBٔwx(BBrw@)BB6 |GBEB%ʫx,Ψ-BB/k0HBB RuY`HB(B|e:ИHBXBeHBB6w/BBLFY0NB !l'XBB_O$3BBB UVq04BPB@wxBBP,q¨@IBB*PwB`B䌢UB٥BEBexwxDAEBEs$BEBC6B@YZARl@KB!Z䌢UB٥BZexwxDA$B閜oBeBF |XAf (!is_null($candidate)) { $result[$key] = $candidate; } } } return $result; } /** * Get all statements associated with current access level * * This method dynamically replaces all the markers * * @return array * @access private * * @version 7.0.0 */ private function _get_processed_statements($args) { $tree = $this->_replace_dynamic_markers( $this->_get_access_level_policy_tree(), $args ); // Dynamically replacing all the markers return $tree['Statement']; } /** * Get all params associated with current access level * * This method dynamically replaces all the markers * * @return array * @access private * * @version 7.0.0 */ private function _get ' %!$ &" # Zka|AZB$|AXZ=6p8A^Z?*B8Z5S?+BZt*~AZ̠@&BZ(pZpBZs'&U;BxZ$gE0BZ=8BZvf07BZG[DlBpZ]e&(ΗrBZߘ=@BZ!>GBHZSXFBZpkJUPGBYZ@ ֘0B(ZصӿP0BpZ G("yJEކZط~ B0Ze1|BZ,@PZHZPZvExAx|ZHoh܄EDZj(1B(Z\=ƛeBUZ (֗'߭/B`Z,M1BxZŢ7BZTzlS`G;B return null; } $trace = debug_backtrace(); foreach ($trace as $item) { if (!isset($item['function']) || !isset($item['args'][0]) || !in_array($item['function'], $this->invocationFunctionNames, true)) { continue; } $currentPath = $item['args'][0]; if (Helper::hasPharPrefix($currentPath)) { continue; } $currentBaseName = Helper::determineBaseFile($currentPath); if ($currentBaseName === null) { continue; } // ensure the possible alias name (how we have been called initially) matches // the resolved alias name that was retrieved by the current possible base name try { $currentAlias = (new Reader($currentBaseName))->resolveContainer()->getAlias(); } catch (ReaderException $exception) { // most probably that was not a Phar file continue; } if (empty($currentAlias) || $currentAlias !== $possibleAlias) { continue; } $this->addBaseName($currentBaseName); return $currentBaseName; } return null; } /** * @param string $path * @return null|string */ private function resolvePossibleAlias(string $path) { $normalizedPath = Helper::normalizePath($path); return strstr($normalizedPath, '/', true) ?: null; } /** * @param string $baseName * @return null|PharInvocation */ private function findByBaseName(string $baseName) { return Manager::instance()->getCollection()->findByCallback( function (PharInvocation $candidate) use ($baseName) { return $candidate->getBaseName() === $baseName; }, true ); } /** * @param string $path * @return null|string */ private function findInBaseNames(string $path) { // return directly if the resolved base name was submitted if (in_array($path, $this->baseNames, true)) { return $path; } $parts = explode('/', Helper::normalizePath($path)); while (count($parts)) { $currentPath = implode('/', $parts); if (isset($this->baseNames[$currentPath])) { return $currentPath; } array_pop($parts); } return null; } /** * @param string $baseName */ private function addBaseName(string $baseName) { if (isset($this->baseNames[$baseName])) { return; } $this->baseNames[$baseName] = Helper::normalizeWindowsPath( realpath($baseName) ); } /** * Finds confirmed(!) invocations by alias. * * @param string $path * @return null|PharInvocation * @see \TYPO3\PharStreamWrapper\PharStreamWrapper::collectInvocation() */ private function findByAlias(string $path) { $possibleAlias = $this->resolvePossibleAlias($path); if ($possibleAlias === null) { return null; } return Manager::instance()->getCollection()->findByCallback( function (PharInvocation $candidate) use ($possibleAlias) { return $candidate->isConfirmed() && $candidate->getAlias() === $possibleAlias; }, true ); } } An Error Occurred: Whoops, looks like something went wrong.

Sorry, there was a problem we could not recover from.

The server returned a "500 - Whoops, looks like something went wrong."

Help me resolve this