Test Failed
Branch master (44c6e4)
by stéphane
09:11
created
yaml/Builder.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,6 @@
 block discarded – undo
238 238
     /**
239 239
      * Builds a litteral (folded or not) or any NodeList that has YAML::RAW type (like a multiline value)
240 240
      *
241
-     * @param      NodeList  $children  The children
242 241
      * @param      integer   $type      The type
243 242
      *
244 243
      * @return     string    The litteral.
Please login to merge, or discard this patch.
yaml/Node.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * Create the Node object and parses $nodeString IF not null (else assume a root type Node)
33 33
      *
34 34
      * @param string|null $nodeString The node string
35
-     * @param int|null    $line       The line
35
+     * @param integer    $line       The line
36 36
      */
37 37
     public function __construct($nodeString = null, $line = 0)
38 38
     {
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
      * Process when a "key: value" syntax is found in the parsed string
222 222
      * Note : key is match 1, value is match 2 as per regex from R::KEY
223 223
      *
224
-     * @param array $matches The matches provided by 'preg_match' function in Node::parse
224
+     * @param string[] $matches The matches provided by 'preg_match' function in Node::parse
225 225
      */
226 226
     private function onKey(array $matches)
227 227
     {
Please login to merge, or discard this patch.