Class StubConsoleInput
Stub class used by the console integration harness.
This class enables input to be stubbed and have exceptions raised when no answer is available.
Property Summary
- $_canReadline protected
boolCan this instance use readline? Two conditions must be met:
- Readline support must be enabled.
- Handle we are attached to must be stdin. Allows rich editing with arrow keys and history when inputting a string.
- $_input protected
resourceInput value.
- $currentIndex protected
intCurrent message index
- $replies protected
array<string>Reply values for ask() and askChoice()
Method Summary
-
__construct() public
Constructor
-
dataAvailable() public
Check if data is available on stdin
-
read() public
Read a reply
Method Detail
__construct() public
__construct(array<string> $replies)
Constructor
Parameters
-
array<string>$replies A list of replies for read()
dataAvailable() public
dataAvailable(int $timeout = 0): bool
Check if data is available on stdin
Parameters
-
int$timeout optional An optional time to wait for data
Returns
boolread() public
read(): string
Read a reply
Returns
stringProperty Detail
$_canReadline protected
Can this instance use readline? Two conditions must be met:
- Readline support must be enabled.
- Handle we are attached to must be stdin. Allows rich editing with arrow keys and history when inputting a string.
Type
bool$_input protected
Input value.
Type
resource$currentIndex protected
Current message index
Type
int$replies protected
Reply values for ask() and askChoice()
Type
array<string>
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.4/class-Cake.Console.TestSuite.StubConsoleInput.html