2022-01-26 19:36:26 +01:00
|
|
|
<?php declare(strict_types=1);
|
2022-01-22 19:09:44 +01:00
|
|
|
namespace App\Controller;
|
|
|
|
|
2022-01-26 19:36:26 +01:00
|
|
|
error_reporting(error_level: E_ALL);
|
|
|
|
|
2022-01-22 19:09:44 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class NameserverController
|
|
|
|
{
|
|
|
|
|
|
|
|
public function __construct(private DatabaseConnection $databaseConnection)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|