Revert changes

Removes termination callback
This commit is contained in:
Mathieu "rid" Soula
2024-01-18 10:18:03 +01:00
committed by GitHub
parent 1e779aba67
commit 3e907a00a9

View File

@@ -1686,27 +1686,4 @@ class Restler extends EventDispatcher
), $this->responseData);
}
}
/**
* terminate call
*
* Call _terminate_{methodName}_{extension} if exists with the composed and
* serialized (applying the reponse format) response data
*
* @example _terminate_post_json
*/
public function terminate()
{
$o = & $this->apiMethodInfo;
$terminateCall = '_terminate_' . $o->methodName . '_' .
$this->responseFormat->getExtension();
if (method_exists($o->className, $terminateCall)) {
$this->dispatch('terminateCall');
$this->responseData = call_user_func(array(
Scope::get($o->className),
$terminateCall
), $this->responseData);
}
}
}