8000 minor #25031 [DI] Remove scalar typehint in class used in test case (… · symfony/symfony@a03513a · GitHub
[go: up one dir, main page]

Skip to content

Commit a03513a

Browse files
author
Robin Chalas
committed
minor #25031 [DI] Remove scalar typehint in class used in test case (ogizanagi)
This PR was merged into the 3.4 branch. Discussion ---------- [DI] Remove scalar typehint in class used in test case | Q | A | ------------- | --- | Branch? | 3.4 <!-- see comment below --> | Bug fix? | no | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | N/A <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | N/A Should fix 5.x builds: https://travis-ci.org/symfony/symfony/jobs/304298433#L3054 Commits ------- 5be25d5 [DI] Remove scalar typehint in class used in test case
2 parents 8d7f6ed + 5be25d5 commit a03513a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Tests/Fixtures/SimilarArgumentsDummy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class SimilarArgumentsDummy
1616
public $class1;
1717
public $class2;
1818

19-
public function __construct(CaseSensitiveClass $class1, string $token, CaseSensitiveClass $class2)
19+
public function __construct(CaseSensitiveClass $class1, $token, CaseSensitiveClass $class2)
2020
{
2121
$this->class1 = $class1;
2222
$this->class2 = $class2;

0 commit comments

Comments
 (0)
0