24 lines
361 B
Plaintext
Executable File
24 lines
361 B
Plaintext
Executable File
<?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 [];
|
|
}
|
|
}
|