/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Container/Container.php
}
/**
* Instantiate a concrete instance of the given type.
*
* @param string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
$reflector = new ReflectionClass($concrete);
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
return new $concrete;
}
Arguments
"Class App\Http\Controllers\payment\DigitalVergo does not exist"
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Container/Container.php
}
/**
* Instantiate a concrete instance of the given type.
*
* @param string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
$reflector = new ReflectionClass($concrete);
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
return new $concrete;
}
Arguments
"App\Http\Controllers\payment\DigitalVergo"
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Container/Container.php
$needsContextualBuild = ! empty($parameters) || ! is_null(
$this->getContextualConcrete($abstract)
);
// If an instance of the type is currently being managed as a singleton we'll
// just return an existing instance instead of instantiating new instances
// so the developer can keep using the same objects instance every time.
if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
return $this->instances[$abstract];
}
$this->with[] = $parameters;
$concrete = $this->getConcrete($abstract);
// We're ready to instantiate an instance of the concrete type registered for
// the binding. This will instantiate the types, as well as resolve any of
// its "nested" dependencies recursively until all have gotten resolved.
if ($this->isBuildable($concrete, $abstract)) {
$object = $this->build($concrete);
} else {
$object = $this->make($concrete);
}
// If we defined any extenders for this type, we'll need to spin through them
// and apply them to the object being built. This allows for the extension
// of services, such as changing configuration or decorating the object.
foreach ($this->getExtenders($abstract) as $extender) {
$object = $extender($object, $this);
}
// If the requested type is registered as a singleton we'll want to cache off
// the instances in "memory" so we can return it later without creating an
// entirely new instance of an object on each subsequent request for it.
if ($this->isShared($abstract) && ! $needsContextualBuild) {
$this->instances[$abstract] = $object;
}
if ($raiseEvents) {
$this->fireResolvingCallbacks($abstract, $object);
Arguments
"App\Http\Controllers\payment\DigitalVergo"
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Container/Container.php
* @param array $parameters
* @return mixed
*/
public function makeWith($abstract, array $parameters = [])
{
return $this->make($abstract, $parameters);
}
/**
* Resolve the given type from the container.
*
* @param string $abstract
* @param array $parameters
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function make($abstract, array $parameters = [])
{
return $this->resolve($abstract, $parameters);
}
/**
* {@inheritdoc}
*/
public function get($id)
{
try {
return $this->resolve($id);
} catch (Exception $e) {
if ($this->has($id)) {
throw $e;
}
throw new EntryNotFoundException($id);
}
}
/**
* Resolve the given type from the container.
Arguments
"App\Http\Controllers\payment\DigitalVergo"
[]
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
}
/**
* Resolve the given type from the container.
*
* (Overriding Container::make)
*
* @param string $abstract
* @param array $parameters
* @return mixed
*/
public function make($abstract, array $parameters = [])
{
$abstract = $this->getAlias($abstract);
if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {
$this->loadDeferredProvider($abstract);
}
return parent::make($abstract, $parameters);
}
/**
* Determine if the given abstract type has been bound.
*
* (Overriding Container::bound)
*
* @param string $abstract
* @return bool
*/
public function bound($abstract)
{
return $this->isDeferredService($abstract) || parent::bound($abstract);
}
/**
* Determine if the application has booted.
*
* @return bool
*/
Arguments
"App\Http\Controllers\payment\DigitalVergo"
[]
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Route.php
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
protected function runController()
{
return $this->controllerDispatcher()->dispatch(
$this, $this->getController(), $this->getControllerMethod()
);
}
/**
* Get the controller instance for the route.
*
* @return mixed
*/
public function getController()
{
if (! $this->controller) {
$class = $this->parseControllerCallback()[0];
$this->controller = $this->container->make(ltrim($class, '\\'));
}
return $this->controller;
}
/**
* Get the controller method used for the route.
*
* @return string
*/
protected function getControllerMethod()
{
return $this->parseControllerCallback()[1];
}
/**
* Parse the controller.
*
* @return array
*/
Arguments
"App\Http\Controllers\payment\DigitalVergo"
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Route.php
$this->action['middleware'] = array_merge(
(array) ($this->action['middleware'] ?? []), $middleware
);
return $this;
}
/**
* Get the middleware for the route's controller.
*
* @return array
*/
public function controllerMiddleware()
{
if (! $this->isControllerAction()) {
return [];
}
return $this->controllerDispatcher()->getMiddleware(
$this->getController(), $this->getControllerMethod()
);
}
/**
* Get the dispatcher for the route's controller.
*
* @return \Illuminate\Routing\Contracts\ControllerDispatcher
*/
public function controllerDispatcher()
{
if ($this->container->bound(ControllerDispatcherContract::class)) {
return $this->container->make(ControllerDispatcherContract::class);
}
return new ControllerDispatcher($this->container);
}
/**
* Get the route validators for the instance.
*
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Route.php
$this->action = $action;
return $this;
}
/**
* Get all middleware, including the ones from the controller.
*
* @return array
*/
public function gatherMiddleware()
{
if (! is_null($this->computedMiddleware)) {
return $this->computedMiddleware;
}
$this->computedMiddleware = [];
return $this->computedMiddleware = array_unique(array_merge(
$this->middleware(), $this->controllerMiddleware()
), SORT_REGULAR);
}
/**
* Get or set the middlewares attached to the route.
*
* @param array|string|null $middleware
* @return $this|array
*/
public function middleware($middleware = null)
{
if (is_null($middleware)) {
return (array) ($this->action['middleware'] ?? []);
}
if (is_string($middleware)) {
$middleware = func_get_args();
}
$this->action['middleware'] = array_merge(
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Router.php
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
* Sort the given middleware by priority.
*
* @param \Illuminate\Support\Collection $middlewares
* @return array
*/
protected function sortMiddleware(Collection $middlewares)
{
return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all();
}
/**
* Create a response instance from the given value.
*
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Router.php
$this->events->dispatch(new Events\RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
Arguments
Illuminate\Routing\Route {#310}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Router.php
return $route;
}
/**
* Return the response for the given route.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Routing\Route $route
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
protected function runRoute(Request $request, Route $route)
{
$request->setRouteResolver(function () use ($route) {
return $route;
});
$this->events->dispatch(new Events\RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
Arguments
Illuminate\Routing\Route {#310}
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
{
$this->current = $route = $this->routes->match($request);
$this->container->instance(Route::class, $route);
return $route;
}
/**
* Return the response for the given route.
*
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
Illuminate\Routing\Route {#310}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Router.php
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function respondWithRoute($name)
{
$route = tap($this->routes->getByName($name))->bind($this->currentRequest);
return $this->runRoute($this->currentRequest, $route);
}
/**
* Dispatch the request to the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
public function terminate($request, $response)
{
$this->terminateMiddleware($request, $response);
$this->app->terminate();
}
/**
* Call the terminate method on any terminable middleware.
*
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php
}
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
return $next($request);
}
$this->debugbar->boot();
try {
/** @var \Illuminate\Http\Response $response */
$response = $next($request);
} catch (Exception $e) {
$response = $this->handleException($request, $e);
} catch (Error $error) {
$e = new FatalThrowableError($error);
$response = $this->handleException($request, $e);
}
// Modify the response to add the Debugbar
$this->debugbar->modifyResponse($request, $response);
return $response;
}
/**
* Handle the given exception.
*
* (Copy from Illuminate\Routing\Pipeline by Taylor Otwell)
*
* @param $passable
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
Closure($passable) {#1813 …4}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
$data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);
if (isset($data['allowed']) && IpUtils::checkIp($request->ip(), (array) $data['allowed'])) {
return $next($request);
}
if ($this->inExceptArray($request)) {
return $next($request);
}
throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
}
return $next($request);
}
/**
* Determine if the request has a URI that should be accessible in maintenance mode.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function inExceptArray($request)
{
foreach ($this->except as $except) {
if ($except !== '/') {
$except = trim($except, '/');
}
if ($request->fullUrlIs($except) || $request->is($except)) {
return true;
}
}
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
Closure($passable) {#1494 …4}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
public function thenReturn()
{
return $this->then(function ($passable) {
return $passable;
});
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
Arguments
Closure($request) {#1812 …4}
/var/www/preprod/tn.preprod.clubprivileges.app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
$router->middlewareGroup($key, $middleware);
}
foreach ($this->routeMiddleware as $key => $middleware) {
$router->aliasMiddleware($key, $middleware);
}
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Exception $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
} catch (Throwable $e) {
$this->reportException($e = new FatalThrowableError($e));
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new Events\RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
/var/www/preprod/tn.preprod.clubprivileges.app/public/index.php
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Arguments
Illuminate\Http\Request {#47
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#1887 …4}
#routeResolver: Closure() {#1897 …4}
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#49}
+request: Symfony\Component\HttpFoundation\ParameterBag {#55}
+query: Symfony\Component\HttpFoundation\ParameterBag {#55}
+server: Symfony\Component\HttpFoundation\ServerBag {#51}
+files: Symfony\Component\HttpFoundation\FileBag {#52}
+cookies: Symfony\Component\HttpFoundation\ParameterBag {#50}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#53}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/api/check-cellular-identification"
#requestUri: "/api/check-cellular-identification?ip=18.97.14.81"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}