Newer
Older
<?php
namespace App\Service\Response;
use App\Response\ApiResponse;
abstract class BaseResponseService implements ResponseServiceInterface
{
private ApiResponse $response;
public function __construct(
)
{
$this->response = new ApiResponse();
}
public function getResponse(): ApiResponse
{
return $this->response;
}
}