1
0
Fork 0
mirror of synced 2024-07-09 08:27:01 +12:00
appwrite/tests/e2e/Scopes/ProjectConsole.php

18 lines
280 B
PHP
Raw Normal View History

2020-01-12 02:58:02 +13:00
<?php
namespace Tests\E2E\Scopes;
2022-12-15 04:42:25 +13:00
use Utopia\Database\Helpers\ID;
2022-08-14 22:33:36 +12:00
2020-01-12 02:58:02 +13:00
trait ProjectConsole
{
public function getProject(): array
{
return [
2022-08-14 22:33:36 +12:00
'$id' => ID::custom('console'),
2020-01-12 02:58:02 +13:00
'name' => 'Appwrite',
'apiKey' => '',
];
}
}