1
0
Fork 0
mirror of synced 2024-06-17 10:14:50 +12:00
appwrite/tests/e2e/Scopes/SideNone.php
2022-05-23 14:54:50 +00:00

20 lines
230 B
PHP

<?php
namespace Tests\E2E\Scopes;
trait SideNone
{
public function getHeaders(): array
{
return [];
}
/**
* @return string
*/
public function getSide()
{
return 'none';
}
}