Beispiel #1
0
 /**
  * HelpTask constructor.
  * @param string $id
  */
 public function __construct($id)
 {
     parent::__construct($id);
     $this->getTaskConfiguration()->setLabel('Help')->setDescription('Shows user how to use the system from the client side');
 }
Beispiel #2
0
 /**
  * CommandTask constructor.
  * @param string $id
  */
 public function __construct($id)
 {
     parent::__construct($id);
     $this->getTaskConfiguration()->setLabel('Command')->setDescription('Arbitrary CommandController');
 }
Beispiel #3
0
 /**
  * ListTask constructor.
  * @param string $id
  */
 public function __construct($id)
 {
     parent::__construct($id);
     $this->getTaskConfiguration()->setLabel('List')->setDescription('Lists all tasks available to the user');
 }