1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/src/Appwrite/Utopia/Response/Filter.php
2020-12-26 16:46:43 +05:30

17 lines
294 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 function parse(array $content, string $model): array;
}