Skip to content

Commit 71c05db

Browse files
alamiraultfabpot
authored andcommitted
[Yaml] Minor: Update Inline parse phpdoc
1 parent 74f2ca5 commit 71c05db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Inline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static function initialize(int $flags, int $parsedLineNumber = null, stri
5151
* Converts a YAML string to a PHP value.
5252
*
5353
* @param string $value A YAML string
54-
* @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
54+
* @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
5555
* @param array $references Mapping of variable names to values
5656
*
5757
* @return mixed

Parser.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Parser
4343
* Parses a YAML file into a PHP value.
4444
*
4545
* @param string $filename The path to the YAML file to be parsed
46-
* @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
46+
* @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
4747
*
4848
* @return mixed
4949
*
@@ -72,7 +72,7 @@ public function parseFile(string $filename, int $flags = 0)
7272
* Parses a YAML string to a PHP value.
7373
*
7474
* @param string $value A YAML string
75-
* @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
75+
* @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
7676
*
7777
* @return mixed
7878
*
@@ -711,7 +711,7 @@ private function moveToPreviousLine(): bool
711711
* Parses a YAML value.
712712
*
713713
* @param string $value A YAML value
714-
* @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
714+
* @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
715715
* @param string $context The parser context (either sequence or mapping)
716716
*
717717
* @return mixed

0 commit comments

Comments
 (0)