1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00
appwrite/tests/e2e/Scopes/SideNone.php

20 lines
230 B
PHP
Raw Normal View History

2020-07-08 09:14:40 +12:00
<?php
namespace Tests\E2E\Scopes;
trait SideNone
{
2022-05-24 02:54:50 +12:00
public function getHeaders(): array
2020-07-08 09:14:40 +12:00
{
return [];
}
2020-11-26 19:31:59 +13:00
/**
* @return string
*/
public function getSide()
{
return 'none';
}
2020-07-08 09:14:40 +12:00
}