1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/tests/e2e/Scopes/SideClient.php
2020-01-12 23:28:26 +02:00

15 lines
280 B
PHP

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