mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-03 01:48:56 +02:00
Dummy commands created for testing custom command behaviour
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Command;
|
||||
|
||||
use Mage\Command\AbstractCommand;
|
||||
|
||||
class MyCommand extends AbstractCommand
|
||||
{
|
||||
public function run()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Command;
|
||||
|
||||
class MyInconsistentCommand
|
||||
{
|
||||
public function run()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user