Remove explicts void returns

main
Gabriel Caruso 5 years ago
parent e022c07370
commit 8b5be1d08c
No known key found for this signature in database
GPG Key ID: 4B385A6EE6C9678D

@ -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