Skip to content

Commit 1934b2e

Browse files
committed
minor symfony#53185 Fix expected return type file (alexandre-daubois)
This PR was merged into the 6.4 branch. Discussion ---------- Fix expected return type file | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | - | License | MIT After symfony#52881 Commits ------- ad8096b Fix expected return type
2 parents cf85540 + ad8096b commit 1934b2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/expected-missing-return-types.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ diff --git a/src/Symfony/Bridge/Doctrine/DataCollector/DoctrineDataCollector.php
6060
{
6161
return $this->data['queries'];
6262
@@ -149,5 +149,5 @@ class DoctrineDataCollector extends DataCollector
63-
* @return int
63+
* @return float
6464
*/
6565
- public function getTime()
66-
+ public function getTime(): int
66+
+ public function getTime(): float
6767
{
6868
$time = 0;
6969
diff --git a/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php b/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php

0 commit comments

Comments
 (0)