1: <?php
2: Yii::import('application.commands.*');
3:
4: /**
5: * A test area for executing experimental PHP code inside of a Yii run environment.
6: *
7: * @package application.commands
8: */
9: class DummyCommand extends CConsoleCommand {
10: public function run($args) {
11: // Put code in here
12: }
13: }
14:
15: ?>
16: