Skip to content

Commit 86b73e1

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: (27 commits) feat: add completion for DebugAutowiring search argument [Routing] Add support for aliasing routes [DependencyInjection] only allow `ReflectionNamedType` for `ServiceSubscriberTrait` Fix CS [Console] Open CompleteCommand for custom outputs [Intl] Update the ICU data to 70.1 [Messenger] Add completion for failed messages commands. Fix tests Fixing missing full_stack variable that's needed by toolbar.html.twig [PropertyInfo] Bump phpstan/phpdoc-parser [Security] Backport type fixes [VarExporter] escape unicode chars involved in directionality [Framework] Add completion to debug:container [Messenger] Add completion to command messenger:consume [Intl] Update the ICU data to 70.1 Fix more generic types Default access_decision_manager.strategy option with merge. Fix typos Update validators.ca.xlf Add missing Validator translations for Estonian ... Signed-off-by: Alexander M. Turek <[email protected]>
2 parents 6c9295a + 44d9be8 commit 86b73e1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

PropertyPath.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PropertyPath implements \IteratorAggregate, PropertyPathInterface
3232
/**
3333
* The elements of the property path.
3434
*
35-
* @var string[]
35+
* @var list<string>
3636
*/
3737
private $elements = [];
3838

PropertyPathInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function getParent();
4747
/**
4848
* Returns the elements of the property path as array.
4949
*
50-
* @return string[]
50+
* @return list<string>
5151
*/
5252
public function getElements();
5353

PropertyPathIterator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* information about the current element.
1717
*
1818
* @author Bernhard Schussek <[email protected]>
19+
*
20+
* @extends \ArrayIterator<int, string>
1921
*/
2022
class PropertyPathIterator extends \ArrayIterator implements PropertyPathIteratorInterface
2123
{

0 commit comments

Comments
 (0)