| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | abstract class Base implements HandlerInterface |
||
| 21 | { |
||
| 22 | /** @var ResponseInterface */ |
||
| 23 | protected $responder; |
||
| 24 | |||
| 25 | /** @var ServiceProviderSignature */ |
||
| 26 | protected $serviceProvider; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Base constructor. |
||
| 30 | * |
||
| 31 | * @param ResponseInterface $responder |
||
| 32 | * @param ServiceProviderSignature $serviceProvider |
||
| 33 | */ |
||
| 34 | public function __construct( |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritDoc |
||
| 44 | */ |
||
| 45 | abstract public function handle(UseCaseCommandInterface $command): ResponseInterface; |
||
| 46 | } |
||
| 47 |