1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00
appwrite/tests/e2e/Scopes/SideConsole.php
2021-06-18 14:23:36 +05:45

23 lines
387 B
PHP

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