/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/StreamIn.php (2873B)
read().
*/
public function readString(int $length);
/**
* Read a character.
* It could be equivalent to $this->read(1).
*/
public function readCharacter();
/**
* Read a boolean.
*/
public function readBoolean();
/**
* Read an integer.
*/
public function readInteger(int $length = 1);
/**
* Read a float.
*/
public function readFloat(int $length = 1);
/**
* Read an array.
* In most cases, it could be an alias to the $this->scanf() method.
*/
public function readArray();
/**
* Read a line.
*/
public function readLine();
/**
* Read all, i.e. read as much as possible.
*/
public function readAll(int $offset = 0);
/**
* Parse input from a stream according to a format.
*/
public function scanf(string $format): array;
}