supression de méthode inutile
This commit is contained in:
parent
bdf552f96d
commit
5fe57e8c30
|
@ -5,10 +5,6 @@ class StaticRepo{
|
||||||
//contiens l'instance de la Connexion PDO
|
//contiens l'instance de la Connexion PDO
|
||||||
private static $connexion;
|
private static $connexion;
|
||||||
|
|
||||||
//utilisée dans quasi-toute les requetes, il est mieux de la stocker que de faire une requete
|
|
||||||
//a chaque fois
|
|
||||||
private static $annee;
|
|
||||||
|
|
||||||
//contiens les informations de connexion a la BDD
|
//contiens les informations de connexion a la BDD
|
||||||
private static $config;
|
private static $config;
|
||||||
|
|
||||||
|
@ -29,23 +25,6 @@ class StaticRepo{
|
||||||
return static::$connexion;
|
return static::$connexion;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return String Année courante (format: AAAA-AAAA)
|
|
||||||
*/
|
|
||||||
public static function getAnnee(){
|
|
||||||
|
|
||||||
if(static::$annee == null){
|
|
||||||
$req = static::getConnexion()->prepare('SELECT Annee FROM Annees
|
|
||||||
ORDER BY Annees.Annee DESC
|
|
||||||
LIMIT 1');
|
|
||||||
$req->execute();
|
|
||||||
$result = $req->fetch(PDO::FETCH_ASSOC);
|
|
||||||
static::$annee = $result['Annee'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return static::$annee;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool test de la Connexion
|
* @return bool test de la Connexion
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue