<?php
|
|
|
|
namespace App\Handlers\Response;
|
|
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
interface ResponseHandlerInterface
|
|
{
|
|
public function getResponse();
|
|
public function run();
|
|
}
|