mirror of
https://github.com/appwrite/appwrite
synced 2026-05-02 19:07:18 +00:00
16 lines
236 B
PHP
16 lines
236 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\E2E\Scopes;
|
||
|
|
|
||
|
|
trait ProjectConsole
|
||
|
|
{
|
||
|
|
public function getProject(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'$uid' => 'console',
|
||
|
|
'name' => 'Appwrite',
|
||
|
|
'apiKey' => '',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|