commands-1.x-dev/modules/tasks/src/TaskTypeInterface.php
modules/tasks/src/TaskTypeInterface.php
<?php
declare(strict_types=1);
namespace Drupal\tasks;
/**
* Interface for task_type plugins.
*/
interface TaskTypeInterface {
/**
* Returns the translated plugin label.
*/
public function label(): string;
}
