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