File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public function __construct($indentation = 4)
40
40
/**
41
41
* Sets the indentation.
42
42
*
43
- * @param int $num The amount of spaces to use for indentation of nested nodes.
43
+ * @param int $num The amount of spaces to use for indentation of nested nodes
44
44
*/
45
45
public function setIndentation ($ num )
46
46
{
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class Escaper
46
46
*
47
47
* @param string $value A PHP value
48
48
*
49
- * @return bool True if the value would require double quotes.
49
+ * @return bool True if the value would require double quotes
50
50
*/
51
51
public static function requiresDoubleQuoting ($ value )
52
52
{
@@ -70,7 +70,7 @@ public static function escapeWithDoubleQuotes($value)
70
70
*
71
71
* @param string $value A PHP value
72
72
*
73
- * @return bool True if the value would require single quotes.
73
+ * @return bool True if the value would require single quotes
74
74
*/
75
75
public static function requiresSingleQuoting ($ value )
76
76
{
Original file line number Diff line number Diff line change @@ -31,9 +31,9 @@ class Unescaper
31
31
/**
32
32
* Unescapes a single quoted string.
33
33
*
34
- * @param string $value A single quoted string.
34
+ * @param string $value A single quoted string
35
35
*
36
- * @return string The unescaped string.
36
+ * @return string The unescaped string
37
37
*/
38
38
public function unescapeSingleQuotedString ($ value )
39
39
{
@@ -43,9 +43,9 @@ public function unescapeSingleQuotedString($value)
43
43
/**
44
44
* Unescapes a double quoted string.
45
45
*
46
- * @param string $value A double quoted string.
46
+ * @param string $value A double quoted string
47
47
*
48
- * @return string The unescaped string.
48
+ * @return string The unescaped string
49
49
*/
50
50
public function unescapeDoubleQuotedString ($ value )
51
51
{
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ public static function parse($input, $flags = 0)
86
86
*
87
87
* @param array $array PHP array
88
88
* @param int $inline The level where you switch to inline YAML
89
- * @param int $indent The amount of spaces to use for indentation of nested nodes.
89
+ * @param int $indent The amount of spaces to use for indentation of nested nodes
90
90
* @param int $flags A bit field of DUMP_* constants to customize the dumped YAML string
91
91
*
92
92
* @return string A YAML string representing the original PHP array
You can’t perform that action at this time.
0 commit comments