remove unneeded variable and use type casting instead of intval

This commit is contained in:
Robin Appelman 2018-03-28 15:36:54 +02:00
commit 7797d463d7
2 changed files with 2 additions and 3 deletions

View file

@ -378,8 +378,7 @@ class Share extends AbstractShare {
protected function execute($command) {
$this->connect();
$this->connection->write($command . PHP_EOL);
$output = $this->connection->read();
return $output;
return $this->connection->read();
}
/**