putToInputStream() public method

public putToInputStream ( string $input )
$input string
Ejemplo n.º 1
0
 private function runCommandWithInteractiveInput($name, $input)
 {
     $input = str_replace('[enter]', "\n", $input);
     $this->tester->putToInputStream($input);
     $this->tester->run($name, array('interactive' => true, 'decorated' => false));
 }