Skip to content

Commit d7dfe7f

Browse files
committed
Merge branch '2.8' into 3.0
* 2.8: fixed CS fixed form tests [Console] Fix formatting of SymfonyStyle::comment() [Form] fix post max size translation type extension for >= 2.8 removed dots at the end of @param and @return fixed typo
2 parents 90ce58f + dba4bb5 commit d7dfe7f

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
@@ -31,9 +31,9 @@ class Unescaper
3131
/**
3232
* Unescapes a single quoted string.
3333
*
34-
* @param string $value A single quoted string.
34+
* @param string $value A single quoted string
3535
*
36-
* @return string The unescaped string.
36+
* @return string The unescaped string
3737
*/
3838
public function unescapeSingleQuotedString($value)
3939
{
@@ -43,9 +43,9 @@ public function unescapeSingleQuotedString($value)
4343
/**
4444
* Unescapes a double quoted string.
4545
*
46-
* @param string $value A double quoted string.
46+
* @param string $value A double quoted string
4747
*
48-
* @return string The unescaped string.
48+
* @return string The unescaped string
4949
*/
5050
public function unescapeDoubleQuotedString($value)
5151
{

Yaml.php

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

0 commit comments

Comments
 (0)