1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00
appwrite/src/Appwrite/Utopia/Response/Model/None.php

35 lines
495 B
PHP
Raw Normal View History

2020-11-12 11:01:31 +13:00
<?php
namespace Appwrite\Utopia\Response\Model;
use Appwrite\Utopia\Response;
use Appwrite\Utopia\Response\Model;
class None extends Model
{
/**
* @var bool
*/
protected $none = true;
/**
* Get Name
*
2020-11-12 11:01:31 +13:00
* @return string
*/
public function getName():string
{
return 'None';
}
/**
* Get Collection
*
2020-11-12 11:01:31 +13:00
* @return string
*/
public function getType():string
{
return Response::MODEL_NONE;
}
}