10000 Fix expected return type file by alexandre-daubois · Pull Request #53185 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Fix expected return type file #53185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/expected-missing-return-types.diff
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ diff --git a/src/Symfony/Bridge/Doctrine/DataCollector/DoctrineDataCollector.php
{
return $this->data['queries'];
@@ -149,5 +149,5 @@ class DoctrineDataCollector extends DataCollector
* @return int
* @return float
*/
- public function getTime()
+ public function getTime(): int
+ public function getTime(): float
{
$time = 0;
diff --git a/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php b/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php
Expand Down
0