Skip to content

Commit fa73175

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: fixed CS tweaked default CS fixer config [HttpKernel] Dont close the output stream in debug move HttpKernel component to require section Fixed oci and sqlsrv merge queries when emulation is disabled - fixes #17284 [Session] fix PDO transaction aborted under PostgreSQL [Console] Use InputInterface inherited doc as possible add docblock type elements to support newly added IteratorAggregate::getIterator PhpStorm support FormBuilderInterface: fix getForm() return type. Fixed typo in PHPDoc
2 parents 1485cba + c3e5257 commit fa73175

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Loader/AnnotationDirectoryLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function supports($resource, $type = null)
6969
if (!is_string($resource)) {
7070
return false;
7171
}
72-
72+
7373
try {
7474
$path = $this->locator->locate($resource);
7575
} catch (\Exception $e) {

Matcher/Dumper/DumperCollection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DumperCollection implements \IteratorAggregate
2626
private $parent;
2727

2828
/**
29-
* @var (DumperCollection|DumperRoute)[]
29+
* @var DumperCollection[]|DumperRoute[]
3030
*/
3131
private $children = array();
3232

@@ -38,7 +38,7 @@ class DumperCollection implements \IteratorAggregate
3838
/**
3939
* Returns the children routes and collections.
4040
*
41-
* @return (DumperCollection|DumperRoute)[] Array of DumperCollection|DumperRoute
41+
* @return DumperCollection[]|DumperRoute[] Array of DumperCollection|DumperRoute
4242
*/
4343
public function all()
4444
{
@@ -76,7 +76,7 @@ public function setAll(array $children)
7676
/**
7777
* Returns an iterator over the children.
7878
*
79-
* @return \Iterator The iterator
79+
* @return \Iterator|DumperCollection[]|DumperRoute[] The iterator
8080
*/
8181
public function getIterator()
8282
{

RouteCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function __clone()
4949
*
5050
* @see all()
5151
*
52-
* @return \ArrayIterator An \ArrayIterator object for iterating over routes
52+
* @return \ArrayIterator|Route[] An \ArrayIterator object for iterating over routes
5353
*/
5454
public function getIterator()
5555
{

0 commit comments

Comments
 (0)