dragon-forks/kernel/repositories/control.php
2025-04-12 14:58:22 +02:00

15 lines
No EOL
313 B
PHP

<?php
/**
* Repository pour la table principale du site, qui contient
* les informations "systèmes" du jeu.
*/
class ControlRepository extends Repository {
public function __construct() {
parent::__construct('control');
}
public function get() {
return $this->getById(1);
}
}