mirror of
https://github.com/appwrite/appwrite
synced 2026-04-24 23:17:16 +00:00
19 lines
249 B
PHP
19 lines
249 B
PHP
<?php
|
|
|
|
namespace Tests\E2E\Scopes;
|
|
|
|
trait SideNone
|
|
{
|
|
public function getHeaders(bool $devKey = true): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getSide()
|
|
{
|
|
return 'none';
|
|
}
|
|
}
|