1
0
Fork 0
mirror of synced 2024-07-19 21:35:44 +12:00
appwrite/tests/e2e/Scopes/SideConsole.php

23 lines
387 B
PHP
Raw Normal View History

<?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';
}
}