Some PhpStorm cleanup

This commit is contained in:
Dylan K. Taylor
2017-02-12 12:36:02 +00:00
parent 5a12f40074
commit 8f9c52507a
5 changed files with 3 additions and 9 deletions

View File

@ -65,9 +65,6 @@ abstract class Command{
/** @var string */
protected $usageMessage;
/** @var string */
private $permission = null;
/** @var string */
private $permissionMessage = null;

View File

@ -35,7 +35,6 @@ class CommandReader extends Thread{
protected $buffer;
private $shutdown = false;
private $type = self::TYPE_STREAM;
private $lastLine = -1;
public function __construct(){
$this->buffer = new \Threaded;
@ -89,6 +88,7 @@ class CommandReader extends Thread{
/**
* Checks if the specified stream is a FIFO pipe.
*
* @param resource $stream
* @return bool
*/
private function isPipe($stream) : bool{