Skip to content

Commit 322da5f

Browse files
committed
Merge branch '3.0' into 3.1
* 3.0: fixed CS 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 5751e80 + a108b1d commit 322da5f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Exception/IOExceptionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface IOExceptionInterface extends ExceptionInterface
2121
/**
2222
* Returns the associated path for the exception.
2323
*
24-
* @return string The path.
24+
* @return string The path
2525
*/
2626
public function getPath();
2727
}

Filesystem.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public function rename($origin, $target, $overwrite = false)
283283
/**
284284
* Tells whether a file exists and is readable.
285285
*
286-
* @param string $filename Path to the file.
286+
* @param string $filename Path to the file
287287
*
288288
* @throws IOException When windows path is longer than 258 characters
289289
*/
@@ -479,11 +479,11 @@ public function isAbsolutePath($file)
479479
/**
480480
* Creates a temporary file with support for custom stream wrappers.
481481
*
482-
* @param string $dir The directory where the temporary filename will be created.
483-
* @param string $prefix The prefix of the generated temporary filename.
484-
* Note: Windows uses only the first three characters of prefix.
482+
* @param string $dir The directory where the temporary filename will be created
483+
* @param string $prefix The prefix of the generated temporary filename
484+
* Note: Windows uses only the first three characters of prefix
485485
*
486-
* @return string The new temporary filename (with path), or throw an exception on failure.
486+
* @return string The new temporary filename (with path), or throw an exception on failure
487487
*/
488488
public function tempnam($dir, $prefix)
489489
{
@@ -531,8 +531,8 @@ public function tempnam($dir, $prefix)
531531
/**
532532
* Atomically dumps content into a file.
533533
*
534-
* @param string $filename The file to be written to.
535-
* @param string $content The data to write into the file.
534+
* @param string $filename The file to be written to
535+
* @param string $content The data to write into the file
536536
*
537537
* @throws IOException If the file cannot be written to.
538538
*/
@@ -576,7 +576,7 @@ private function toIterator($files)
576576
/**
577577
* Gets a 2-tuple of scheme (may be null) and hierarchical part of a filename (e.g. file:///tmp -> array(file, tmp)).
578578
*
579-
* @param string $filename The filename to be parsed.
579+
* @param string $filename The filename to be parsed
580580
*
581581
* @return array The filename scheme and hierarchical part
582582
*/

0 commit comments

Comments
 (0)