mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-23 20:39:05 +02:00
27 lines
331 B
PHP
27 lines
331 B
PHP
<?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;
|
|
}
|
|
}
|
|
|