1
0
Fork 0

No useless return (#10877)

There should not be an empty return statement at the end of a function.
pull/10893/head
Mathias Reker ⚡️ 2022-06-21 21:17:47 +02:00 committed by GitHub
parent 805b7f12f9
commit 4714fd5a7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -470,7 +470,7 @@ EOT
protected function interact(InputInterface $input, OutputInterface $output): void
{
return;
}
/**

View File

@ -181,6 +181,6 @@ abstract class VcsDriver implements VcsDriverInterface
*/
public function cleanup(): void
{
return;
}
}