MockCreate.php 518 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. namespace lithium\tests\mocks\console\command;
  9. class MockCreate extends \lithium\console\command\Create {
  10. protected $_classes = array(
  11. 'response' => 'lithium\tests\mocks\console\MockResponse'
  12. );
  13. public function save($template, $params = array()) {
  14. return $this->_save($template, $params);
  15. }
  16. }
  17. ?>