Test Failed
Push — master ( 44c6e4...f07b2d )
by stéphane
03:54 queued 11s
created
yaml/Loader.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
     private const EXCEPTION_READ_ERROR = self::class.": file '%s' failed to be loaded (permission denied ?)";
38 38
     private const EXCEPTION_LINE_SPLIT = self::class.": content is not a string(maybe a file error?)";
39 39
 
40
+    /**
41
+     * @param string $absolutePath
42
+     */
40 43
     public function __construct($absolutePath = null, $options = null, $debug = 0)
41 44
     {
42 45
         $this->debug   = is_int($debug) ? min($debug, 3) : 1;
@@ -73,6 +76,9 @@  discard block
 block discarded – undo
73 76
         return $this;
74 77
     }
75 78
 
79
+    /**
80
+     * @param string $strContent
81
+     */
76 82
     private function getSourceIterator($strContent = null)
77 83
     {
78 84
         $source = $this->content ?? preg_split("/\n/m", preg_replace('/(\r\n|\r)/', "\n", $strContent), 0, PREG_SPLIT_DELIM_CAPTURE);
Please login to merge, or discard this patch.