Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Invalid route action: [App\Http\Controllers\ScanController].

Exception

UnexpectedValueException

  1.      * @throws \UnexpectedValueException
  2.      */
  3.     protected static function makeInvokable($action)
  4.     {
  5.         if (! method_exists($action'__invoke')) {
  6.             throw new UnexpectedValueException("Invalid route action: [{$action}].");
  7.         }
  8.         return $action.'@__invoke';
  9.     }
  1.         elseif (! isset($action['uses'])) {
  2.             $action['uses'] = static::findCallable($action);
  3.         }
  4.         if (! static::containsSerializedClosure($action) && is_string($action['uses']) && ! Str::contains($action['uses'], '@')) {
  5.             $action['uses'] = static::makeInvokable($action['uses']);
  6.         }
  7.         return $action;
  8.     }
  1.      *
  2.      * @throws \UnexpectedValueException
  3.      */
  4.     protected function parseAction($action)
  5.     {
  6.         return RouteAction::parse($this->uri$action);
  7.     }
  8.     /**
  9.      * Run the route action and return the response.
  10.      *
  1.      */
  2.     public function __construct($methods$uri$action)
  3.     {
  4.         $this->uri $uri;
  5.         $this->methods = (array) $methods;
  6.         $this->action Arr::except($this->parseAction($action), ['prefix']);
  7.         if (in_array('GET'$this->methods) && ! in_array('HEAD'$this->methods)) {
  8.             $this->methods[] = 'HEAD';
  9.         }
  1.      * @param  mixed  $action
  2.      * @return \Illuminate\Routing\Route
  3.      */
  4.     public function newRoute($methods$uri$action)
  5.     {
  6.         return (new Route($methods$uri$action))
  7.                     ->setRouter($this)
  8.                     ->setContainer($this->container);
  9.     }
  10.     /**
  1.         if ($this->actionReferencesController($action)) {
  2.             $action $this->convertToControllerAction($action);
  3.         }
  4.         $route $this->newRoute(
  5.             $methods$this->prefix($uri), $action
  6.         );
  7.         // If we have groups that need to be merged, we will merge them now after this
  8.         // route has already been created and is ready to go. After we're done with
  9.         // the merge we will be ready to return the route back out to the caller.
  1.      * @param  array|string|callable|null  $action
  2.      * @return \Illuminate\Routing\Route
  3.      */
  4.     public function addRoute($methods$uri$action)
  5.     {
  6.         return $this->routes->add($this->createRoute($methods$uri$action));
  7.     }
  8.     /**
  9.      * Create a new route instance.
  10.      *
  1.      * @param  array|string|callable|null  $action
  2.      * @return \Illuminate\Routing\Route
  3.      */
  4.     public function get($uri$action null)
  5.     {
  6.         return $this->addRoute(['GET''HEAD'], $uri$action);
  7.     }
  8.     /**
  9.      * Register a new POST route with the router.
  10.      *
  1.         if (! $instance) {
  2.             throw new RuntimeException('A facade root has not been set.');
  3.         }
  4.         return $instance->$method(...$args);
  5.     }
  6. }
Facade::__callStatic('get', array('/scan/{number:body}', 'App\\Http\\Controllers\\ScanController')) in /home/socialsho2/ws.socialshop.cl/routes/web.php (line 47)
  1.     Route::post('/home/setSessionSelectedDevice',[HomeController::class,'setSelectedDeviceSession'])->name('home.setSessionSelectedDevice');
  2.     Route::post('/home/sethook',[HomeController::class,'setHook'])->name('setHook');
  3.     Route::post('/home',[HomeController::class,'store'])->name('addDevice');
  4.     Route::delete('/home',[HomeController::class,'destroy'])->name('deleteDevice');
  5.     Route::get('/scan/{number:body}'ScanController::class)->name('scan');
  6.     Route::get('/autoreply',[AutoreplyController::class,'index'])->name('autoreply');
  7.     Route::post('/autoreply',[AutoreplyController::class,'store'])->name('autoreply');
  8.     Route::delete('/autoreply',[AutoreplyController::class,'destroy'])->name('autoreply.delete');
  9.     Route::post('auto-reply/update/{autoreply:id}',[AutoreplyController::class,'update'])->name('autoreply.update');
  1.      * @return void
  2.      */
  3.     protected function loadRoutes($routes)
  4.     {
  5.         if ($routes instanceof Closure) {
  6.             $routes($this);
  7.         } else {
  8.             (new RouteFileRegistrar($this))->register($routes);
  9.         }
  10.     }
  1.         $this->updateGroupStack($attributes);
  2.         // Once we have updated the group stack, we'll load the provided routes and
  3.         // merge in the group's attributes when the routes are created. After we
  4.         // have created the routes, we will pop the attributes off the stack.
  5.         $this->loadRoutes($routes);
  6.         array_pop($this->groupStack);
  7.     }
  8.     /**
  1.      * @param  \Closure|string  $callback
  2.      * @return void
  3.      */
  4.     public function group($callback)
  5.     {
  6.         $this->router->group($this->attributes$callback);
  7.     }
  8.     /**
  9.      * Register a new route with the given verbs.
  10.      *
RouteRegistrar->group(object(Closure)) in /home/socialsho2/ws.socialshop.cl/routes/web.php (line 114)
  1.     Route::post('/logout'LogoutController::class)->name('logout');
  2.   
  3. });
  4. Route::middleware('guest')->group(function(){
  5.   Route::get('/login',[LoginController::class,'index'])->name('login');
  6.     Route::get('/register',[RegisterController::class,'index'])->name('register');
  1.      */
  2.     public function register($routes)
  3.     {
  4.         $router $this->router;
  5.         require $routes;
  6.     }
  7. }
  1.     protected function loadRoutes($routes)
  2.     {
  3.         if ($routes instanceof Closure) {
  4.             $routes($this);
  5.         } else {
  6.             (new RouteFileRegistrar($this))->register($routes);
  7.         }
  8.     }
  9.     /**
  10.      * Get the prefix from the last group on the stack.
  1.         $this->updateGroupStack($attributes);
  2.         // Once we have updated the group stack, we'll load the provided routes and
  3.         // merge in the group's attributes when the routes are created. After we
  4.         // have created the routes, we will pop the attributes off the stack.
  5.         $this->loadRoutes($routes);
  6.         array_pop($this->groupStack);
  7.     }
  8.     /**
  1.      * @param  \Closure|string  $callback
  2.      * @return void
  3.      */
  4.     public function group($callback)
  5.     {
  6.         $this->router->group($this->attributes$callback);
  7.     }
  8.     /**
  9.      * Register a new route with the given verbs.
  10.      *
RouteRegistrar->group('/home/socialsho2/ws.socialshop.cl/routes/web.php') in /home/socialsho2/ws.socialshop.cl/app/Providers/RouteServiceProvider.php (line 47)
  1.                 ->namespace($this->namespace)
  2.                 ->group(base_path('routes/api.php'));
  3.             Route::middleware('web')
  4.                 ->namespace($this->namespace)
  5.                 ->group(base_path('routes/web.php'));
  6.         });
  7.     }
  8.     /**
  9.      * Configure the rate limiters for the application.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  $value
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value)
  5.     {
  6.         return $value instanceof Closure $value() : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.      * @return mixed
  2.      */
  3.     protected static function callBoundMethod($container$callback$default)
  4.     {
  5.         if (! is_array($callback)) {
  6.             return Util::unwrapIfClosure($default);
  7.         }
  8.         // Here we need to turn the array callable into a Class@method string we can use to
  9.         // examine the container and see if there are any method bindings for this given
  10.         // method. If there are, we can call this method binding callback immediately.
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.      *
  2.      * @throws \InvalidArgumentException
  3.      */
  4.     public function call($callback, array $parameters = [], $defaultMethod null)
  5.     {
  6.         return BoundMethod::call($this$callback$parameters$defaultMethod);
  7.     }
  8.     /**
  9.      * Get a closure to resolve the given type from the container.
  10.      *
  1.      * @return void
  2.      */
  3.     protected function loadRoutes()
  4.     {
  5.         if (! is_null($this->loadRoutesUsing)) {
  6.             $this->app->call($this->loadRoutesUsing);
  7.         } elseif (method_exists($this'map')) {
  8.             $this->app->call([$this'map']);
  9.         }
  10.     }
  1.             $this->setRootControllerNamespace();
  2.             if ($this->routesAreCached()) {
  3.                 $this->loadCachedRoutes();
  4.             } else {
  5.                 $this->loadRoutes();
  6.                 $this->app->booted(function () {
  7.                     $this->app['router']->getRoutes()->refreshNameLookups();
  8.                     $this->app['router']->getRoutes()->refreshActionLookups();
  9.                 });
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  $value
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value)
  5.     {
  6.         return $value instanceof Closure $value() : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.      * @return mixed
  2.      */
  3.     protected static function callBoundMethod($container$callback$default)
  4.     {
  5.         if (! is_array($callback)) {
  6.             return Util::unwrapIfClosure($default);
  7.         }
  8.         // Here we need to turn the array callable into a Class@method string we can use to
  9.         // examine the container and see if there are any method bindings for this given
  10.         // method. If there are, we can call this method binding callback immediately.
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.      *
  2.      * @throws \InvalidArgumentException
  3.      */
  4.     public function call($callback, array $parameters = [], $defaultMethod null)
  5.     {
  6.         return BoundMethod::call($this$callback$parameters$defaultMethod);
  7.     }
  8.     /**
  9.      * Get a closure to resolve the given type from the container.
  10.      *
  1.     public function callBootedCallbacks()
  2.     {
  3.         $index 0;
  4.         while ($index count($this->bootedCallbacks)) {
  5.             $this->app->call($this->bootedCallbacks[$index]);
  6.             $index++;
  7.         }
  8.     }
  1.         if (method_exists($provider'boot')) {
  2.             $this->call([$provider'boot']);
  3.         }
  4.         $provider->callBootedCallbacks();
  5.     }
  6.     /**
  7.      * Register a new boot listener.
  8.      *
  1.         // for any listeners that need to do work after this initial booting gets
  2.         // finished. This is useful when ordering the boot-up processes we run.
  3.         $this->fireAppCallbacks($this->bootingCallbacks);
  4.         array_walk($this->serviceProviders, function ($p) {
  5.             $this->bootProvider($p);
  6.         });
  7.         $this->booted true;
  8.         $this->fireAppCallbacks($this->bootedCallbacks);
Application->Illuminate\Foundation\{closure}(object(RouteServiceProvider), 24)
  1.         // finished. This is useful when ordering the boot-up processes we run.
  2.         $this->fireAppCallbacks($this->bootingCallbacks);
  3.         array_walk($this->serviceProviders, function ($p) {
  4.             $this->bootProvider($p);
  5.         });
  6.         $this->booted true;
  7.         $this->fireAppCallbacks($this->bootedCallbacks);
  8.     }
  1.      * @param  \Illuminate\Contracts\Foundation\Application  $app
  2.      * @return void
  3.      */
  4.     public function bootstrap(Application $app)
  5.     {
  6.         $app->boot();
  7.     }
  8. }
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.                     ->send($request)
  7.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.                     ->then($this->dispatchToRouter());
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/socialsho2/ws.socialshop.cl/public/index.php (line 51)
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

UnexpectedValueException
UnexpectedValueException:
Invalid route action: [App\Http\Controllers\ScanController].

  at /home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/RouteAction.php:92
  at Illuminate\Routing\RouteAction::makeInvokable('App\\Http\\Controllers\\ScanController')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/RouteAction.php:47)
  at Illuminate\Routing\RouteAction::parse('scan/{number:body}', array('uses' => 'App\\Http\\Controllers\\ScanController', 'controller' => 'App\\Http\\Controllers\\ScanController'))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Route.php:191)
  at Illuminate\Routing\Route->parseAction(array('uses' => 'App\\Http\\Controllers\\ScanController', 'controller' => 'App\\Http\\Controllers\\ScanController'))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Route.php:172)
  at Illuminate\Routing\Route->__construct(array('GET', 'HEAD'), 'scan/{number:body}', array('uses' => 'App\\Http\\Controllers\\ScanController', 'controller' => 'App\\Http\\Controllers\\ScanController'))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:583)
  at Illuminate\Routing\Router->newRoute(array('GET', 'HEAD'), 'scan/{number:body}', array('uses' => 'App\\Http\\Controllers\\ScanController', 'controller' => 'App\\Http\\Controllers\\ScanController'))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:476)
  at Illuminate\Routing\Router->createRoute(array('GET', 'HEAD'), '/scan/{number:body}', array('uses' => 'App\\Http\\Controllers\\ScanController', 'controller' => 'App\\Http\\Controllers\\ScanController'))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:455)
  at Illuminate\Routing\Router->addRoute(array('GET', 'HEAD'), '/scan/{number:body}', 'App\\Http\\Controllers\\ScanController')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:147)
  at Illuminate\Routing\Router->get('/scan/{number:body}', 'App\\Http\\Controllers\\ScanController')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:261)
  at Illuminate\Support\Facades\Facade::__callStatic('get', array('/scan/{number:body}', 'App\\Http\\Controllers\\ScanController'))
     (/home/socialsho2/ws.socialshop.cl/routes/web.php:47)
  at Illuminate\Routing\RouteFileRegistrar->{closure}(object(Router))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:423)
  at Illuminate\Routing\Router->loadRoutes(object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:382)
  at Illuminate\Routing\Router->group(array('middleware' => array('auth')), object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php:163)
  at Illuminate\Routing\RouteRegistrar->group(object(Closure))
     (/home/socialsho2/ws.socialshop.cl/routes/web.php:114)
  at require('/home/socialsho2/ws.socialshop.cl/routes/web.php')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/RouteFileRegistrar.php:35)
  at Illuminate\Routing\RouteFileRegistrar->register('/home/socialsho2/ws.socialshop.cl/routes/web.php')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:425)
  at Illuminate\Routing\Router->loadRoutes('/home/socialsho2/ws.socialshop.cl/routes/web.php')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/Router.php:382)
  at Illuminate\Routing\Router->group(array('middleware' => array('web'), 'namespace' => null), '/home/socialsho2/ws.socialshop.cl/routes/web.php')
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php:163)
  at Illuminate\Routing\RouteRegistrar->group('/home/socialsho2/ws.socialshop.cl/routes/web.php')
     (/home/socialsho2/ws.socialshop.cl/app/Providers/RouteServiceProvider.php:47)
  at App\Providers\RouteServiceProvider->App\Providers\{closure}()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/Util.php:40)
  at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:81)
  at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), object(Closure), object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call(object(Application), object(Closure), array(), null)
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/Container.php:653)
  at Illuminate\Container\Container->call(object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php:120)
  at Illuminate\Foundation\Support\Providers\RouteServiceProvider->loadRoutes()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php:45)
  at Illuminate\Foundation\Support\Providers\RouteServiceProvider->Illuminate\Foundation\Support\Providers\{closure}()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/Util.php:40)
  at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:81)
  at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), object(Closure), object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call(object(Application), object(Closure), array(), null)
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Container/Container.php:653)
  at Illuminate\Container\Container->call(object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php:119)
  at Illuminate\Support\ServiceProvider->callBootedCallbacks()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:927)
  at Illuminate\Foundation\Application->bootProvider(object(RouteServiceProvider))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:905)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}(object(RouteServiceProvider), 24)
  at array_walk(array(object(EventServiceProvider), object(LogServiceProvider), object(RoutingServiceProvider), object(AuthServiceProvider), object(CookieServiceProvider), object(DatabaseServiceProvider), object(EncryptionServiceProvider), object(FilesystemServiceProvider), object(FormRequestServiceProvider), object(ParallelTestingServiceProvider), object(FoundationServiceProvider), object(NotificationServiceProvider), object(PaginationServiceProvider), object(SessionServiceProvider), object(ViewServiceProvider), object(CorsServiceProvider), object(ImageServiceProvider), object(SanctumServiceProvider), object(ExcelServiceProvider), object(ServiceProvider), object(LaravelFilemanagerServiceProvider), object(AppServiceProvider), object(AuthServiceProvider), object(EventServiceProvider), object(RouteServiceProvider), object(CustomServiceProvider), object(CacheServiceProvider)), object(Closure))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:906)
  at Illuminate\Foundation\Application->boot()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap(object(Application))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:237)
  at Illuminate\Foundation\Application->bootstrapWith(array('Illuminate\\Foundation\\Bootstrap\\LoadEnvironmentVariables', 'Illuminate\\Foundation\\Bootstrap\\LoadConfiguration', 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'Illuminate\\Foundation\\Bootstrap\\RegisterFacades', 'Illuminate\\Foundation\\Bootstrap\\RegisterProviders', 'Illuminate\\Foundation\\Bootstrap\\BootProviders'))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:153)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:137)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/socialsho2/ws.socialshop.cl/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/socialsho2/ws.socialshop.cl/public/index.php:51)