1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-24 12:40:16 +02:00
Magallanes/tests/Dummies/Command/MyCommand.php

14 lines
162 B
PHP
Raw Normal View History

<?php
namespace Command;
use Mage\Command\AbstractCommand;
class MyCommand extends AbstractCommand
{
public function run()
{
return 0;
}
}