1
0
Fork 0
mirror of synced 2024-07-06 07:00:56 +12:00
appwrite/tests/e2e/Scopes/ProjectConsole.php
2022-08-14 22:33:36 +12:00

18 lines
272 B
PHP

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