PATH:
home
/
lab2454c
/
credityorkgroup.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
<?php namespace Illuminate\Routing; use Illuminate\Support\Reflector; use Illuminate\Support\Str; use ReflectionFunction; use ReflectionMethod; class RouteSignatureParameters { /** * Extract the route action's signature parameters. * * @param array $action * @param string|null $subClass * @return array */ public static function fromAction(array $action, $subClass = null) { $callback = RouteAction::containsSerializedClosure($action) ? unserialize($action['uses'])->getClosure() : $action['uses']; $parameters = is_string($callback) ? static::fromClassMethodString($callback) : (new ReflectionFunction($callback))->getParameters(); return is_null($subClass) ? $parameters : array_filter($parameters, function ($p) use ($subClass) { return Reflector::isParameterSubclassOf($p, $subClass); }); } /** * Get the parameters for the given class / method by string. * * @param string $uses * @return array */ protected static function fromClassMethodString($uses) { [$class, $method] = Str::parseCallback($uses); if (! method_exists($class, $method) && Reflector::isCallable($class, $method)) { return []; } return (new ReflectionMethod($class, $method))->getParameters(); } }
[+]
Exceptions
[-] ControllerDispatcher.php
[edit]
[-] RouteParameterBinder.php
[edit]
[-] composer.json
[edit]
[-] CompiledRouteCollection.php
[edit]
[-] ImplicitRouteBinding.php
[edit]
[-] RouteUri.php
[edit]
[-] RouteGroup.php
[edit]
[-] PendingResourceRegistration.php
[edit]
[+]
..
[-] Redirector.php
[edit]
[-] MiddlewareNameResolver.php
[edit]
[-] ViewController.php
[edit]
[-] Route.php
[edit]
[-] Pipeline.php
[edit]
[+]
Matching
[-] RouteSignatureParameters.php
[edit]
[-] RouteDependencyResolverTrait.php
[edit]
[-] CreatesRegularExpressionRouteConstraints.php
[edit]
[+]
Events
[-] ResourceRegistrar.php
[edit]
[-] RouteFileRegistrar.php
[edit]
[+]
Middleware
[-] Controller.php
[edit]
[-] RouteRegistrar.php
[edit]
[-] RouteUrlGenerator.php
[edit]
[-] LICENSE.md
[edit]
[+]
Contracts
[+]
Console
[-] ResponseFactory.php
[edit]
[-] SortedMiddleware.php
[edit]
[-] RoutingServiceProvider.php
[edit]
[-] UrlGenerator.php
[edit]
[-] AbstractRouteCollection.php
[edit]
[-] RouteBinding.php
[edit]
[-] RouteCollectionInterface.php
[edit]
[-] RedirectController.php
[edit]
[-] RouteCollection.php
[edit]
[-] RouteAction.php
[edit]
[-] Router.php
[edit]
[-] ControllerMiddlewareOptions.php
[edit]