1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00
appwrite/tests/e2e/Scopes/ProjectConsole.php

16 lines
235 B
PHP
Raw Normal View History

2020-01-12 02:58:02 +13:00
<?php
namespace Tests\E2E\Scopes;
trait ProjectConsole
{
public function getProject(): array
{
return [
2020-02-17 20:16:11 +13:00
'$id' => 'console',
2020-01-12 02:58:02 +13:00
'name' => 'Appwrite',
'apiKey' => '',
];
}
}