1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00
appwrite/src/Appwrite/Utopia/Response/Model/Any.php
2022-05-23 14:54:50 +00:00

35 lines
487 B
PHP

<?php
namespace Appwrite\Utopia\Response\Model;
use Appwrite\Utopia\Response;
use Appwrite\Utopia\Response\Model;
class Any extends Model
{
/**
* @var bool
*/
protected $any = true;
/**
* Get Name
*
* @return string
*/
public function getName(): string
{
return 'Any';
}
/**
* Get Type
*
* @return string
*/
public function getType(): string
{
return Response::MODEL_ANY;
}
}