/var/www/vhosts/ihelp.ro/httpdocs/vendor/psy/psysh/src/Readline/Hoa
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/psy/psysh/src/Readline/Hoa/ConsoleInput.php (4252B)
_input = $input;
return;
}
/**
* Get underlying stream.
*/
public function getStream(): StreamIn
{
return $this->_input;
}
/**
* Test for end-of-file.
*/
public function eof(): bool
{
return $this->_input->eof();
}
/**
* Read n characters.
*/
public function read(int $length)
{
return $this->_input->read($length);
}
/**
* Alias of $this->read().
*/
public function readString(int $length)
{
return $this->_input->readString($length);
}
/**
* Read a character.
*/
public function readCharacter()
{
return $this->_input->readCharacter();
}
/**
* Read a boolean.
*/
public function readBoolean()
{
return $this->_input->readBoolean();
}
/**
* Read an integer.
*/
public function readInteger(int $length = 1)
{
return $this->_input->readInteger($length);
}
/**
* Read a float.
*/
public function readFloat(int $length = 1)
{
return $this->_input->readFloat($length);
}
/**
* Read an array.
* Alias of the $this->scanf() method.
*/
public function readArray($argument = null)
{
return $this->_input->readArray($argument);
}
/**
* Read a line.
*/
public function readLine()
{
return $this->_input->readLine();
}
/**
* Read all, i.e. read as much as possible.
*/
public function readAll(int $offset = 0)
{
return $this->_input->readAll($offset);
}
/**
* Parse input from a stream according to a format.
*/
public function scanf(string $format): array
{
return $this->_input->scanf($format);
}
}