19 lines
292 B
Plaintext
19 lines
292 B
Plaintext
<?php
|
|
|
|
namespace DummyNamespace;
|
|
|
|
use Facade\IgnitionContracts\HasSolutionsForThrowable;
|
|
|
|
class DummyClass implements HasSolutionsForThrowable
|
|
{
|
|
public function canSolve(): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function getSolutions(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|