Completed
Push — master ( 180c3e...9faef8 )
by Jonathan
02:00
created
src/Engine.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -154,6 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * Get all preassigned template data.
156 156
      * @param  null|string $template;
157
+     * @param string $template
157 158
      * @return array
158 159
      */
159 160
     public function getData($template = null)
@@ -165,6 +166,7 @@  discard block
 block discarded – undo
165 166
      * Register a new template function.
166 167
      * @param  string   $name;
167 168
      * @param  callback $callback;
169
+     * @param string $name
168 170
      * @return Engine
169 171
      */
170 172
     public function registerFunction($name, $callback)
Please login to merge, or discard this patch.
src/Template/Template.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,6 @@  discard block
 block discarded – undo
74 74
 
75 75
     /**
76 76
      * Alias for render() method.
77
-     * @param  array  $data
78 77
      * @throws \Throwable
79 78
      * @throws \Exception
80 79
      * @return string
@@ -242,7 +241,7 @@  discard block
 block discarded – undo
242 241
 
243 242
     /**
244 243
      * Apply multiple functions to variable.
245
-     * @param  mixed  $var
244
+     * @param  string  $var
246 245
      * @param  string $functions
247 246
      * @return mixed
248 247
      */
Please login to merge, or discard this patch.