wiki.techinc.nl/includes/Rest/Validator/BodyValidator.php
daniel e6e0ad2472 Replace "@stable for implementation" with "@stable to implement"
For compliance with the new version of the table interface policy
(T255803).

This patch was created by an automated search & replace operation
on the includes/ directory.

Bug: T257789
Change-Id: I17e5e92e24c708ffc846945a136347670a3a20c7
2020-07-13 11:05:49 +02:00

28 lines
656 B
PHP

<?php
namespace MediaWiki\Rest\Validator;
use MediaWiki\Rest\HttpException;
use MediaWiki\Rest\RequestInterface;
/**
* Interface for validating a request body
*
* @stable to implement
*/
interface BodyValidator {
/**
* Validate the body of a request.
*
* This may return a data structure representing the parsed body. When used
* in the context of Handler::validateParams(), the returned value will be
* available to the handler via Handler::getValidatedBody().
*
* @param RequestInterface $request
* @return mixed
* @throws HttpException on validation failure
*/
public function validateBody( RequestInterface $request );
}