portal.mkgtu.ru/common/components/soapResponse/responses/BaseResponse.php

20 lines
353 B
PHP
Executable File

<?php
namespace common\components\soapResponse\responses;
use common\components\soapResponse\interfaces\ISoapResponse;
class BaseResponse implements ISoapResponse
{
protected function prepareResponseData($response): array
{
return [];
}
public function getMethodName(): string
{
return "UNKNOWN_METHOD";
}
}