Browse Source

Dummy commands created for testing custom command behaviour

1.0
Claudio Zizza 10 years ago
parent
commit
5e43c4e044
  1. 13
      tests/Dummies/Command/MyCommand.php
  2. 11
      tests/Dummies/Command/MyInconsistentCommand.php

13
tests/Dummies/Command/MyCommand.php

@ -0,0 +1,13 @@
<?php
namespace Command;
use Mage\Command\AbstractCommand;
class MyCommand extends AbstractCommand
{
public function run()
{
return 0;
}
}

11
tests/Dummies/Command/MyInconsistentCommand.php

@ -0,0 +1,11 @@
<?php
namespace Command;
class MyInconsistentCommand
{
public function run()
{
return 0;
}
}
Loading…
Cancel
Save