repo/rest-api/src/Application/UseCases/PatchPropertyAliases/PatchPropertyAliasesValidator.php
<?php declare( strict_types=1 );
namespace Wikibase\Repo\RestApi\Application\UseCases\PatchPropertyAliases;
use Wikibase\Repo\RestApi\Application\UseCases\UseCaseError;
/**
* @license GPL-2.0-or-later
*/
interface PatchPropertyAliasesValidator {
/**
* @throws UseCaseError
*/
public function validateAndDeserialize( PatchPropertyAliasesRequest $request ): DeserializedPatchPropertyAliasesRequest;
}