Skip to content

Commit d529c0f

Browse files
committed
removed dots at the end of @param and @return
1 parent f3c0ae4 commit d529c0f

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
@@ -44,7 +44,7 @@ class Escaper
4444
*
4545
* @param string $value A PHP value
4646
*
47-
* @return bool True if the value would require double quotes.
47+
* @return bool True if the value would require double quotes
4848
*/
4949
public static function requiresDoubleQuoting($value)
5050
{
@@ -68,7 +68,7 @@ public static function escapeWithDoubleQuotes($value)
6868
*
6969
* @param string $value A PHP value
7070
*
71-
* @return bool True if the value would require single quotes.
71+
* @return bool True if the value would require single quotes
7272
*/
7373
public static function requiresSingleQuoting($value)
7474
{

Unescaper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ class Unescaper
3737
/**
3838
* Unescapes a single quoted string.
3939
*
40-
* @param string $value A single quoted string.
40+
* @param string $value A single quoted string
4141
*
42-
* @return string The unescaped string.
42+
* @return string The unescaped string
4343
*/
4444
public function unescapeSingleQuotedString($value)
4545
{
@@ -49,9 +49,9 @@ public function unescapeSingleQuotedString($value)
4949
/**
5050
* Unescapes a double quoted string.
5151
*
52-
* @param string $value A double quoted string.
52+
* @param string $value A double quoted string
5353
*
54-
* @return string The unescaped string.
54+
* @return string The unescaped string
5555
*/
5656
public function unescapeDoubleQuotedString($value)
5757
{

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)