|
<?php
|
|
|
|
namespace Spatie\ErrorSolutions\Contracts;
|
|
|
|
interface Solution
|
|
{
|
|
public function getSolutionTitle(): string;
|
|
|
|
public function getSolutionDescription(): string;
|
|
|
|
/** @return array<string, string> */
|
|
public function getDocumentationLinks(): array;
|
|
}
|