appwrite/tests/e2e/Scopes/SideClient.php

15 lines
280 B
PHP
Raw Normal View History

2020-01-11 13:58:02 +00:00
<?php
namespace Tests\E2E\Scopes;
trait SideClient
{
public function getHeaders():array
{
2020-01-12 21:28:26 +00:00
return [
'origin' => 'http://localhost',
'cookie' => 'a_session_'.$this->getProject()['$uid'].'=' . $this->getUser()['session'],
];
2020-01-11 13:58:02 +00:00
}
}