24 lines
361 B
Plaintext
24 lines
361 B
Plaintext
|
|
<?php
|
||
|
|
|
||
|
|
namespace DummyNamespace;
|
||
|
|
|
||
|
|
use Facade\IgnitionContracts\Solution;
|
||
|
|
|
||
|
|
class DummyClass implements Solution
|
||
|
|
{
|
||
|
|
public function getSolutionTitle(): string
|
||
|
|
{
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getSolutionDescription(): string
|
||
|
|
{
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getDocumentationLinks(): array
|
||
|
|
{
|
||
|
|
return [];
|
||
|
|
}
|
||
|
|
}
|