1.'.... .------f----Z-"--}-s-[i-_-U-K-KA--7---#-P-6--,:,,,,y,A,,,~,1,,,ny,6o,e,[,Q,uG,=,3,),e,G, ,,d+F++++6++++++++Du+&k+a+W+IM+C+9+/+%+N+0++*S*%****X*:***]*/**{*q*bg*D]* S*I*g?*95*+*!*j** **Z) ))i)K)))h)))h)J),)w)m)Qc)Y)O)eE)G;)1)'))) )(~(3((((-((;(((((k}(s(i(z_(/U(K(A(u7(-(T#(((D(''S'5''颿'R'鰾'钾'R'4'''sy';o'e'餼['OQ'1G'='霻3'޺)'鞺''ι '}'2&ݸ&鿸&鉸&,&ܷ&:&&ܶ&龶&頶&j&&ŵu&yk&.a&ٴW&黴M&tC&9&Y/&%&鉲&I&&魱%X%:%%駰%W%鵯%闯%W%9%%%x%@{%q%驭g%T]%6S%I%顬?% 5%+%鵫!%闫%_ %%麪$錪$L$*$ $鿩$顩$i$$Ĩ$閨$V$4$w$ɧm$髧c$sY$O$ΦE$頦;$`1$>'$ $ӥ$鵥 $w# #Ҥ#餤#d#B#$#ף#鹣#{##֢#騢#h}#Fs#١i#陡_# U#ɠK#xA#-7#؟-#麟##鄟#'#מ#5""ם"鹝"雝"e"""t")"ԛ"鶛"o"y"No"e"~[">Q"G"题="M3"/)""霗"L "骖"錖!L!.!!ڕ!m!5!!鞔!I!+!!釓!ɒu!鉒k!a!鹑W!hM!C!Ȑ9!骐/!t%!!Ǐ!%! ǎ 驎 鋎 U 鰍 d  Č 馌 _  D{ q tg 4] S 阉I C? %5 + 针! B 頇 邇 B$Іc+߅锅?!ڄ}鹃ywm驂cXY O鸁E隁;d1'鷀 {E~~T~ ~}}O}|k|M|}|s{i{_7{UzKzAzarameter) { static::addDependencyForCallParameter($container, $parameter, $parameters, $dependencies); } return array_merge($dependencies, array_values($parameters)); } /** * Get the proper reflection instance for the given callback. * * @param callable|string $callback * @return \ReflectionFunctionAbstract * * @throws \ReflectionException */ protected static function getCallReflector($callback) { if (is_string($callback) && str_contains($callback, '::')) { $callback = explode('::', $callback); } elseif (is_object($callback) && ! $callback instanceof Closure) { $callback = [$callback, '__invoke']; } return is_array($callback) ? new ReflectionMethod($callback[0], $callback[1]) : new ReflectionFunction($callback); } /** * Get the dependency for the given call parameter. * * @param \Illuminate\Container\Container $container * @param \ReflectionParameter $parameter * @param array $parameters * @param array $dependencies * @return void * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ protected static function addDependencyForCallParameter($container, $parameter, array &$parameters, &$dependencies) { if (array_key_exists($paramName = $parameter->getName(), $parameters)) { $dependencies[] = $parameters[$paramName]; unset($parameters[$paramName]); } elseif (! is_null($className = Util::getParameterClassName($parameter))) { if (array_key_exists($className, $parameters)) { $dependencies[] = $parameters[$className]; unset($parameters[$className]); } elseif ($parameter->isVariadic()) { $variadicDependencies = $container->make($className); $dependencies = array_merge($dependencies, is_array($variadicDependencies) ? $variadicDependencies : [$variadicDependencies]); } else { $dependencies[] = $container->make($className); } } elseif ($parameter->isDefaultValueAvailable()) { $dependencies[] = $parameter->getDefaultValue(); } elseif (! $parameter->isOptional() && ! array_key_exists($paramName, $parameters)) { $message = "Unable to resolve dependency [{$parameter}] in class {$parameter->getDeclaringClass()->getName()}"; throw new BindingResolutionException($message); } } /** * Determine if the given string is in Class@method syntax. * * @param mixed $callback * @return bool */ protected static function isCallableWithAtSign($callback) { return is_string($callback) && str_contains($callback, '@'); } } Class "Illuminate\Container\BoundMethod" not found (500 Internal Server Error)

Symfony Exception

Error

HTTP 500 Internal Server Error

Class "Illuminate\Container\BoundMethod" not found

Exception

Error

  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.     protected function bootProvider(ServiceProvider $provider)
  2.     {
  3.         $provider->callBootingCallbacks();
  4.         if (method_exists($provider'boot')) {
  5.             $this->call([$provider'boot']);
  6.         }
  7.         $provider->callBootedCallbacks();
  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}()
  1.         // Once the application has booted we will also fire some "booted" callbacks
  2.         // for any listeners that need to do work after this initial booting gets
  3.         // finished. This is useful when ordering the boot-up processes we run.
  4.         $this->fireAppCallbacks($this->bootingCallbacks);
  5.         array_walk($this->serviceProviders, function ($p) {
  6.             $this->bootProvider($p);
  7.         });
  8.         $this->booted true;
  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.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1. |
  2. */
  3. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  4. $response $kernel->handle(
  5.     $request Illuminate\Http\Request::capture()
  6. );
  7. $response->send();

Stack Trace

Error
Error:
Class "Illuminate\Container\BoundMethod" not found

  at /home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Container/Container.php:661
  at Illuminate\Container\Container->call()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:929)
  at Illuminate\Foundation\Application->bootProvider()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:910)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
  at array_walk()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:909)
  at Illuminate\Foundation\Application->boot()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:242)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:160)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/deb124773n2/dr/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/deb124773n2/domains/drailsoftware.com/public_html/index.php:52)