Completed
Pull Request — master (#23)
by Moesjarraf
06:39
created
src/DataEnricher.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,6 @@
 block discarded – undo
137 137
      * Check if object has at leas one process property
138 138
      * 
139 139
      * @param \stdClass    $value
140
-     * @param Processor[]  $processors
141 140
      * @return boolean
142 141
      */
143 142
     protected function hasProcessorProperty($value)
Please login to merge, or discard this patch.
src/DataEnricher/Processor.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@  discard block
 block discarded – undo
13 13
      * Class constructor
14 14
      * 
15 15
      * @param string $property  Property key with the processing instruction
16
+     * @return void
16 17
      */
17 18
     public function __construct($property);
18 19
 
@@ -27,6 +28,7 @@  discard block
 block discarded – undo
27 28
      * Apply processing to a node
28 29
      * 
29 30
      * @param Node $node
31
+     * @return null|boolean
30 32
      */
31 33
     public function applyToNode(Node $node);
32 34
 }
Please login to merge, or discard this patch.
src/DataEnricher/Processor/Mustache.php 1 patch
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.