appwrite/tests/e2e/Scopes/SideClient.php
2023-08-23 13:12:43 -04:00

22 lines
384 B
PHP

<?php
namespace Tests\E2E\Scopes;
trait SideClient
{
public function getHeaders(): array
{
return [
'origin' => 'http://localhost',
'cookie' => 'a_session_'.$this->getProject()['$id'].'='.$this->getUser()['session'],
];
}
/**
* @return string
*/
public function getSide()
{
return 'client';
}
}