Dummy classes removed

This commit is contained in:
Claudio Zizza
2015-03-11 21:41:40 +01:00
parent 4c4d76bd2d
commit 673acac083
2 changed files with 0 additions and 63 deletions
-27
View File
@@ -1,27 +0,0 @@
<?php
namespace Task;
class MyInconsistentTask
{
/**
* Returns the Title of the Task
*
* @return string
*/
public function getName()
{
return 'my task';
}
/**
* Runs the task
*
* @return boolean
*/
public function run()
{
return true;
}
}
-36
View File
@@ -1,36 +0,0 @@
<?php
namespace Task;
use Exception;
use Mage\Task\AbstractTask;
use Mage\Task\ErrorWithMessageException;
use Mage\Task\SkipException;
class MyTask extends AbstractTask
{
/**
* Returns the Title of the Task
*
* @return string
*/
public function getName()
{
return 'my task';
}
/**
* Runs the task
*
* @return boolean
* @throws Exception
* @throws ErrorWithMessageException
* @throws SkipException
*/
public function run()
{
return true;
}
}