reviewer-1.2.x-dev/src/Reviewer/Task/FixableInterface.php
src/Reviewer/Task/FixableInterface.php
<?php
namespace Drupal\reviewer\Reviewer\Task;
use Drupal\reviewer\Reviewer\Result\ResultInterface;
/**
* Defines a task which can be fixed.
*/
interface FixableInterface {
/**
* Fix issues.
*
* @throws \Exception
*/
public function fix(): ResultInterface;
}
