9 lines
120 B
PHP
9 lines
120 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Facade\IgnitionContracts;
|
||
|
|
|
||
|
|
interface ProvidesSolution
|
||
|
|
{
|
||
|
|
public function getSolution(): Solution;
|
||
|
|
}
|