Skip to content

Commit dba4bb5

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: removed dots at the end of @param and @return fixed typo
2 parents 95a2e68 + d529c0f commit dba4bb5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Dumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Dumper
2828
/**
2929
* Sets the indentation.
3030
*
31-
* @param int $num The amount of spaces to use for indentation of nested nodes.
31+
* @param int $num The amount of spaces to use for indentation of nested nodes
3232
*/
3333
public function setIndentation($num)
3434
{

Escaper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Escaper
4646
*
4747
* @param string $value A PHP value
4848
*
49-
* @return bool True if the value would require double quotes.
49+
* @return bool True if the value would require double quotes
5050
*/
5151
public static function requiresDoubleQuoting($value)
5252
{
@@ -70,7 +70,7 @@ public static function escapeWithDoubleQuotes($value)
7070
*
7171
* @param string $value A PHP value
7272
*
73-
* @return bool True if the value would require single quotes.
73+
* @return bool True if the value would require single quotes
7474
*/
7575
public static function requiresSingleQuoting($value)
7676
{

Unescaper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ class Unescaper
3939
/**
4040
* Unescapes a single quoted string.
4141
*
42-
* @param string $value A single quoted string.
42+
* @param string $value A single quoted string
4343
*
44-
* @return string The unescaped string.
44+
* @return string The unescaped string
4545
*/
4646
public function unescapeSingleQuotedString($value)
4747
{
@@ -51,9 +51,9 @@ public function unescapeSingleQuotedString($value)
5151
/**
5252
* Unescapes a double quoted string.
5353
*
54-
* @param string $value A double quoted string.
54+
* @param string $value A double quoted string
5555
*
56-
* @return string The unescaped string.
56+
* @return string The unescaped string
5757
*/
5858
public function unescapeDoubleQuotedString($value)
5959
{

Yaml.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static function parse($input, $exceptionOnInvalidType = false, $objectSup
8080
*
8181
* @param array $array PHP array
8282
* @param int $inline The level where you switch to inline YAML
83-
* @param int $indent The amount of spaces to use for indentation of nested nodes.
83+
* @param int $indent The amount of spaces to use for indentation of nested nodes
8484
* @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise
8585
* @param bool $objectSupport true if object support is enabled, false otherwise
8686
*

0 commit comments

Comments
 (0)