Dummy commands created for testing custom command behaviour

This commit is contained in:
Claudio Zizza 2014-12-07 23:00:19 +01:00
parent e453d1977d
commit 5e43c4e044
2 changed files with 24 additions and 0 deletions

View file

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

View file

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