Test Setup Failed
Push — master ( 9b6ae8...002a67 )
by Mehmet
01:51
created
src/ApplicationResponse.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -111,6 +111,11 @@
 block discarded – undo
111 111
         return $this->view->render($templatePath, $this->controllerResponse->getData());
112 112
     }
113 113
 
114
+    /**
115
+     * @param string $template
116
+     * @param string $type
117
+     * @param string $controller
118
+     */
114 119
     private function checkTemplateFile($template, $type, $controller) : void
115 120
     {
116 121
         if (!file_exists($this->config->app->get('templates_path') .'/'. $template)) {
Please login to merge, or discard this patch.
src/Application.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@
 block discarded – undo
95 95
         }
96 96
     }
97 97
 
98
+    /**
99
+     * @param string $message
100
+     */
98 101
     private function notFound($status, $message) : void
99 102
     {
100 103
         $errorHandlerClass = $this->container->get('http-error-handler');
Please login to merge, or discard this patch.