Completed
Push — master ( 90c5e1...099915 )
by James Ekow Abaka
07:40
created
src/TemplateEngine.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -144,6 +144,11 @@  discard block
 block discarded – undo
144 144
         return $this->helpersLoader;
145 145
     }
146 146
 
147
+    /**
148
+     * @param string $testTemplate
149
+     * @param string[] $paths
150
+     * @param string $extension
151
+     */
147 152
     private static function testTemplateFile($testTemplate, $paths, $extension) {
148 153
         $templateFile = '';
149 154
         foreach ($paths as $path) {
@@ -156,6 +161,10 @@  discard block
 block discarded – undo
156 161
         return $templateFile;
157 162
     }
158 163
 
164
+    /**
165
+     * @param string $testTemplate
166
+     * @param string[] $paths
167
+     */
159 168
     private static function testNoEngineTemplateFile($testTemplate, $paths) {
160 169
         $templateFile = '';
161 170
         foreach ($paths as $path) {
@@ -172,6 +181,9 @@  discard block
 block discarded – undo
172 181
         return $templateFile;
173 182
     }
174 183
 
184
+    /**
185
+     * @param string $template
186
+     */
175 187
     private static function searchTemplateDirectory($template, $ignoreEngine = false) {
176 188
         $templateFile = '';
177 189
         $paths = self::getPath();
Please login to merge, or discard this patch.