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