Symfony Exception

ReflectionException BindingResolutionException

HTTP 500 Internal Server Error

Target class [sage.view] does not exist.

Exceptions 2

Illuminate\Contracts\Container\ BindingResolutionException

  1.         }
  2.         try {
  3.             $reflector = new ReflectionClass($concrete);
  4.         } catch (ReflectionException $e) {
  5.             throw new BindingResolutionException("Target class [$concrete] does not exist."0$e);
  6.         }
  7.         // If the type is not instantiable, the developer is attempting to resolve
  8.         // an abstract type such as an Interface or Abstract Class and there is
  9.         // no binding registered for the abstractions so we need to bail out.
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     {
  2.         if (is_null($abstract)) {
  3.             return Container::getInstance();
  4.         }
  5.         return Container::getInstance()->make($abstract$parameters);
  6.     }
  7. }
  8. if (! function_exists('app_path')) {
  9.     /**
  1. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/index.php') in /var/www/www.dolcevita.cz/web/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/var/www/www.dolcevita.cz/web/wp-includes/template-loader.php') in /var/www/www.dolcevita.cz/web/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/var/www/www.dolcevita.cz/web/wp-blog-header.php') in /var/www/www.dolcevita.cz/web/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

ReflectionException

Class "sage.view" does not exist

  1.         if ($concrete instanceof Closure) {
  2.             return $concrete($this$this->getLastParameterOverride());
  3.         }
  4.         try {
  5.             $reflector = new ReflectionClass($concrete);
  6.         } catch (ReflectionException $e) {
  7.             throw new BindingResolutionException("Target class [$concrete] does not exist."0$e);
  8.         }
  9.         // If the type is not instantiable, the developer is attempting to resolve
  1.         if ($concrete instanceof Closure) {
  2.             return $concrete($this$this->getLastParameterOverride());
  3.         }
  4.         try {
  5.             $reflector = new ReflectionClass($concrete);
  6.         } catch (ReflectionException $e) {
  7.             throw new BindingResolutionException("Target class [$concrete] does not exist."0$e);
  8.         }
  9.         // If the type is not instantiable, the developer is attempting to resolve
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     {
  2.         if (is_null($abstract)) {
  3.             return Container::getInstance();
  4.         }
  5.         return Container::getInstance()->make($abstract$parameters);
  6.     }
  7. }
  8. if (! function_exists('app_path')) {
  9.     /**
  1. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/index.php') in /var/www/www.dolcevita.cz/web/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/var/www/www.dolcevita.cz/web/wp-includes/template-loader.php') in /var/www/www.dolcevita.cz/web/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/var/www/www.dolcevita.cz/web/wp-blog-header.php') in /var/www/www.dolcevita.cz/web/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Stack Traces 2

[2/2] BindingResolutionException
Illuminate\Contracts\Container\BindingResolutionException:
Target class [sage.view] does not exist.

  at /var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:891
  at Illuminate\Container\Container->build()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:770)
  at Illuminate\Container\Container->resolve()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:856)
  at Illuminate\Foundation\Application->resolve()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:706)
  at Illuminate\Container\Container->make()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:841)
  at Illuminate\Foundation\Application->make()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/roots/acorn/src/Illuminate/Foundation/helpers.php:120)
  at app()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/index.php:1)
  at include('/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/index.php')
     (/var/www/www.dolcevita.cz/web/wp-includes/template-loader.php:106)
  at require_once('/var/www/www.dolcevita.cz/web/wp-includes/template-loader.php')
     (/var/www/www.dolcevita.cz/web/wp-blog-header.php:19)
  at require('/var/www/www.dolcevita.cz/web/wp-blog-header.php')
     (/var/www/www.dolcevita.cz/web/index.php:17)                
[1/2] ReflectionException
ReflectionException:
Class "sage.view" does not exist

  at /var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:889
  at ReflectionClass->__construct()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:889)
  at Illuminate\Container\Container->build()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:770)
  at Illuminate\Container\Container->resolve()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:856)
  at Illuminate\Foundation\Application->resolve()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/illuminate/container/Container.php:706)
  at Illuminate\Container\Container->make()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:841)
  at Illuminate\Foundation\Application->make()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/vendor/roots/acorn/src/Illuminate/Foundation/helpers.php:120)
  at app()
     (/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/index.php:1)
  at include('/var/www/www.dolcevita.cz/web/wp-content/themes/beaucoup/index.php')
     (/var/www/www.dolcevita.cz/web/wp-includes/template-loader.php:106)
  at require_once('/var/www/www.dolcevita.cz/web/wp-includes/template-loader.php')
     (/var/www/www.dolcevita.cz/web/wp-blog-header.php:19)
  at require('/var/www/www.dolcevita.cz/web/wp-blog-header.php')
     (/var/www/www.dolcevita.cz/web/index.php:17)