1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00
appwrite/tests/e2e/Scopes/SideClient.php
2020-02-17 09:16:11 +02:00

15 lines
279 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'],
];
}
}