1
0
Fork 0
mirror of synced 2024-07-05 22:51:24 +12:00
appwrite/tests/e2e/Scopes/ProjectConsole.php
2022-12-14 17:42:25 +02:00

18 lines
280 B
PHP

<?php
namespace Tests\E2E\Scopes;
use Utopia\Database\Helpers\ID;
trait ProjectConsole
{
public function getProject(): array
{
return [
'$id' => ID::custom('console'),
'name' => 'Appwrite',
'apiKey' => '',
];
}
}