1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 21:30:18 +02:00

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;
}
}