Skip to content

Commit bd8b14b

Browse files
Merge branch '7.4' into 8.0
* 7.4: Fix merge [MonologBridge] Make `ConsoleHandler` not handle messages at SILENT verbosity Remove needless calls to defined() [Validator] Review Slovak translations [VarDumper] Select HtmlDumper only if `Accept` header contains "html" restore translation source entries [SecurityBundle] Add missing `fixXmlConfig()` call for `issuer` [Validator] Review Romanian translations chore(config): add better type information using phpdoc chore(form): add better type information using phpdoc chore(finder): add better type information using phpdoc [Console] Don’t append a new line to test inputs ending with an EOT
2 parents dd87bc2 + c1a41e8 commit bd8b14b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Finder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
* @author Fabien Potencier <fabien@symfony.com>
3939
*
40-
* @implements \IteratorAggregate<string, SplFileInfo>
40+
* @implements \IteratorAggregate<non-empty-string, SplFileInfo>
4141
*/
4242
class Finder implements \IteratorAggregate, \Countable
4343
{
@@ -657,7 +657,7 @@ public function in(string|array $dirs): static
657657
*
658658
* This method implements the IteratorAggregate interface.
659659
*
660-
* @return \Iterator<string, SplFileInfo>
660+
* @return \Iterator<non-empty-string, SplFileInfo>
661661
*
662662
* @throws \LogicException if the in() method has not been called
663663
*/

0 commit comments

Comments
 (0)