moved namespace

This commit is contained in:
tracer 2022-10-07 11:33:54 +02:00
parent c1a54aa23e
commit f45dd8fbc1
1 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,12 @@
<?php
namespace App\Controller;
namespace Unit\Controller;
use App\Controller\DatabaseConnection;
use App\Repository\NameserverRepository;
use DI\Container;
use DI\ContainerBuilder;
use Exception;
use PHPUnit\Framework\TestCase;
use function DI\autowire;
@ -19,7 +21,7 @@ class BindApiTestController extends TestCase
/**
* @param int|string $dataName
*
* @throws \Exception
* @throws Exception
* @internal This method is not covered by the backward compatibility promise for PHPUnit
*/
public function __construct(?string $name = null, array $data = [], $dataName = '')