Initial import from aternosorg/codex-minecraft
This commit is contained in:
21
src/Analysis/SolutionInterface.php
Normal file
21
src/Analysis/SolutionInterface.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Aternos\Codex\Analysis;
|
||||
|
||||
use JsonSerializable;
|
||||
|
||||
/**
|
||||
* Interface SolutionInterface
|
||||
*
|
||||
* @package Aternos\Codex\Analysis
|
||||
*/
|
||||
interface SolutionInterface extends JsonSerializable
|
||||
{
|
||||
/**
|
||||
* Get the solution as a human-readable message
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMessage(): string;
|
||||
public function __toString(): string;
|
||||
}
|
||||
Reference in New Issue
Block a user