Merge pull request #8243 from carusogabriel/remove-explict-void-return

Remove explicits void returns
main
Jordi Boggiano 5 years ago committed by GitHub
commit 7edd689533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -87,8 +87,6 @@ class PerforceDownloader extends VcsDownloader
public function getLocalChanges(PackageInterface $package, $path) public function getLocalChanges(PackageInterface $package, $path)
{ {
$this->io->writeError('Perforce driver does not check for local changes before overriding', true); $this->io->writeError('Perforce driver does not check for local changes before overriding', true);
return;
} }
/** /**

@ -363,8 +363,6 @@ class Perforce
while ($line !== false) { while ($line !== false) {
$line = fgets($pipe); $line = fgets($pipe);
} }
return;
} }
public function windowsLogin($password) public function windowsLogin($password)

Loading…
Cancel
Save