13 lines
223 B
PHP
13 lines
223 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Facade\IgnitionContracts;
|
||
|
|
|
||
|
|
interface Solution
|
||
|
|
{
|
||
|
|
public function getSolutionTitle(): string;
|
||
|
|
|
||
|
|
public function getSolutionDescription(): string;
|
||
|
|
|
||
|
|
public function getDocumentationLinks(): array;
|
||
|
|
}
|