mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-09-14 13:10:18 +02:00
Dummy commands created for testing custom command behaviour
This commit is contained in:
parent
e453d1977d
commit
5e43c4e044
13
tests/Dummies/Command/MyCommand.php
Normal file
13
tests/Dummies/Command/MyCommand.php
Normal file
@ -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
Normal file
11
tests/Dummies/Command/MyInconsistentCommand.php
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Command;
|
||||||
|
|
||||||
|
class MyInconsistentCommand
|
||||||
|
{
|
||||||
|
public function run()
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user