commands-1.x-dev/modules/tasks/src/Entity/Task/TaskBase.php
modules/tasks/src/Entity/Task/TaskBase.php
<?php
declare(strict_types=1);
namespace Drupal\tasks\Entity\Task;
use Drupal\tasks\Entity\Task;
/**
* A base bundle class for task entities.
*/
abstract class TaskBase extends Task {
public function commands() {
return [
'git_clone'
];
}
}
