appwrite/tests/e2e/Scopes/SideNone.php

20 lines
230 B
PHP
Raw Normal View History

2020-07-07 21:14:40 +00:00
<?php
namespace Tests\E2E\Scopes;
trait SideNone
{
2022-05-23 14:54:50 +00:00
public function getHeaders(): 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
}