E2E\TestCase::waitForUserInput PHP Method

waitForUserInput() protected method

Wait for the user to press ENTER key before continuing.
protected waitForUserInput ( )
    protected function waitForUserInput()
    {
        if (trim(fgets(fopen('php://stdin', 'rb'))) !== chr(13)) {
            return;
        }
    }