Completed
Pull Request — master (#23)
by Moesjarraf
06:39
created
src/DataEnricher/Processor/Mustache.php 2 patches
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@  discard block
 block discarded – undo
39 39
      * Parse a template by mustache if possible and return the result
40 40
      * 
41 41
      * @param mixed $template
42
-
43 42
      * @return mixed $result
44 43
      */
45 44
     protected function getParsedResult($template)
@@ -59,7 +58,6 @@  discard block
 block discarded – undo
59 58
      * Parse a object with mustache
60 59
      * 
61 60
      * @param  object $template
62
-
63 61
      * @return object $result
64 62
      */
65 63
     protected function parseObject($template)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $template = $node->getInstruction($this);
29 29
         
30 30
         if (!is_string($template) && !is_array($template) && !is_object($template)) {
31
-            return trigger_error("Unable to parse given template of type: " . gettype($template), E_WARNING);
31
+            return trigger_error("Unable to parse given template of type: ".gettype($template), E_WARNING);
32 32
         }
33 33
         
34 34
         $result = $this->getParsedResult($template);
Please login to merge, or discard this patch.