PhpBench\Console\CharacterReader::__construct PHP Метод

__construct() публичный Метод

If readline is installed, then prevent the user having to press in order to paginate.
public __construct ( )
    public function __construct()
    {
        // we could use extension_loaded but HHVM returns true and
        // still doesn't have this function..
        if (function_exists('readline_callback_handler_install')) {
            readline_callback_handler_install('', function () {
            });
        }
    }
CharacterReader