1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/tests/e2e/Scopes/SideServer.php

19 lines
258 B
PHP
Raw Normal View History

2020-01-12 02:58:02 +13:00
<?php
namespace Tests\E2E\Scopes;
trait SideServer
{
/**
* @var array
*/
protected $key = [];
public function getHeaders():array
{
return [
2020-01-13 00:47:08 +13:00
'x-appwrite-key' => $this->getProject()['apiKey']
2020-01-12 02:58:02 +13:00
];
}
}