move list of requests out to twig

This commit is contained in:
Spine
2023-02-03 11:13:55 +01:00
parent c8f7538080
commit f636f4dd16
10 changed files with 148 additions and 76 deletions
+2 -5
View File
@@ -1,18 +1,15 @@
<?php
namespace Gazelle;
use \PHPUnit\Framework\TestCase;
require_once(__DIR__ . '/../../lib/bootstrap.php');
class UserCreateTest extends TestCase {
protected UserCreator $userCreator;
protected \Gazelle\UserCreator $userCreator;
public function setUp(): void {
$_SERVER['HTTP_USER_AGENT'] = 'phpunit';
$this->userCreator = new UserCreator;
$this->userCreator = new \Gazelle\UserCreator;
}
public function tearDown(): void {}