reviewer-1.2.x-dev/src/Reviewer/IgnoredTasksInterface.php
src/Reviewer/IgnoredTasksInterface.php
<?php
namespace Drupal\reviewer\Reviewer;
/**
* Definition for an item that supports ignored tasks.
*/
interface IgnoredTasksInterface {
/**
* Get task IDs to ignore.
*
* @return array{id: string, reason: string}[]
*
* @throws \LogicException
* Thrown when the review containing the ignored items is not set.
*/
public function getIgnored(): array;
}
