15 lines
No EOL
313 B
PHP
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);
|
|
}
|
|
} |