mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
|
|
/**
|
|
* A REST service provider implementing this interface will have its input JSON data sanitized for logging purposes
|
|
*
|
|
* @see \iRestServiceProvider
|
|
* @since 2.7.13, 3.2.1-1
|
|
*/
|
|
interface iRestInputSanitizer
|
|
{
|
|
public function SanitizeJsonInput(string $sJsonInput): string;
|
|
}
|