2022-01-26 15:18:46 +01:00
|
|
|
<?php declare(strict_types=1);
|
2022-01-18 19:14:24 +01:00
|
|
|
namespace App\Controller;
|
|
|
|
|
2022-01-26 19:00:19 +01:00
|
|
|
error_reporting(error_level: E_ALL);
|
|
|
|
|
2022-01-20 10:37:34 +01:00
|
|
|
use Exception;
|
2022-01-18 19:14:24 +01:00
|
|
|
use PDO;
|
|
|
|
use PDOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2022-01-23 16:36:04 +01:00
|
|
|
class ApiKeys
|
2022-01-18 19:14:24 +01:00
|
|
|
{
|
2022-01-22 18:43:51 +01:00
|
|
|
public function __construct(private DatabaseConnection $databaseConnection)
|
2022-01-20 10:37:34 +01:00
|
|
|
{}
|
2022-01-18 19:14:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|