No useless return (#10877)
There should not be an empty return statement at the end of a function.pull/10893/head
parent
805b7f12f9
commit
4714fd5a7b
|
@ -470,7 +470,7 @@ EOT
|
|||
|
||||
protected function interact(InputInterface $input, OutputInterface $output): void
|
||||
{
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -181,6 +181,6 @@ abstract class VcsDriver implements VcsDriverInterface
|
|||
*/
|
||||
public function cleanup(): void
|
||||
{
|
||||
return;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue