Moving ConsoleInput to the correct directory.

This commit is contained in:
mark_story 2010-10-04 23:25:54 -04:00
parent d64078db2d
commit 67f03afa02

View file

@ -36,7 +36,7 @@ class ConsoleInput {
* @return void * @return void
*/ */
public function __construct($handle = 'php://stdin') { public function __construct($handle = 'php://stdin') {
$this->_input = fopen('php://stdin', 'r'); $this->_input = fopen($handle, 'r');
} }
/** /**