mirror of https://github.com/hauke68/Magallanes
Claudio Zizza
10 years ago
2 changed files with 0 additions and 63 deletions
@ -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; |
||||
} |
||||
} |
||||
|
@ -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; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue