Browse Source

Revert exception for strict class name finding.

Mark Sch 7 years ago
parent
commit
cd063fac7c
1 changed files with 0 additions and 3 deletions
  1. 0 3
      src/Controller/Component/RequestHandlerComponent.php

+ 0 - 3
src/Controller/Component/RequestHandlerComponent.php

@@ -598,9 +598,6 @@ class RequestHandlerComponent extends Component
         $viewClass = null;
         if ($builder->getClassName() === null) {
             $viewClass = App::className($view, 'View', 'View');
-            if ($viewClass === false) {
-                throw new RuntimeException('Configured view class can not be found: ' . $view);
-            }
         }
 
         if ($viewClass) {