1
0
Fork 0
mirror of synced 2024-06-01 10:29:48 +12:00
appwrite/src/Appwrite/Utopia/Response/Filter.php
2022-05-23 14:54:50 +00:00

17 lines
296 B
PHP

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