1
0
Fork 0
mirror of synced 2024-06-13 08:14:46 +12:00
appwrite/src/Appwrite/Utopia/Request/Filter.php
2021-12-30 10:25:43 +01:00

18 lines
291 B
PHP

<?php
namespace Appwrite\Utopia\Request;
abstract class Filter
{
/**
* Parse params to another format.
*
* @param array $content
* @param string $model
*
* @return array
*/
abstract public function parse(array $content, string $model): array;
}