reviewer-1.2.x-dev/src/Reviewer/Result/ResultInterface.php
src/Reviewer/Result/ResultInterface.php
<?php
namespace Drupal\reviewer\Reviewer\Result;
use Drupal\reviewer\Reviewer\Status\Status;
/**
* Defines a basic result.
*/
interface ResultInterface {
/**
* Get the result ID.
*/
public function getId(): string;
/**
* Get the status of the result.
*/
public function getStatus(): Status;
}
