appwrite/tests/e2e/Scopes/SideNone.php

20 lines
249 B
PHP
Raw Normal View History

2020-07-07 21:14:40 +00:00
<?php
namespace Tests\E2E\Scopes;
trait SideNone
{
public function getHeaders(bool $devKey = true): array
2020-07-07 21:14:40 +00:00
{
return [];
}
2020-11-26 06:31:59 +00:00
/**
* @return string
*/
public function getSide()
{
return 'none';
}
2020-07-07 21:14:40 +00:00
}