Dummy classes removed

This commit is contained in:
Claudio Zizza 2015-02-23 21:01:03 +01:00
parent 4c4d76bd2d
commit 673acac083
2 changed files with 0 additions and 63 deletions

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

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