GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch master (d57d41)
by Vermeulen
03:02
created
src/interfaces/IRam.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * 
38 38
      * @return bool
39 39
      */
40
-    public function setVal($key, $data, $expire=0);
40
+    public function setVal($key, $data, $expire = 0);
41 41
     
42 42
     /**
43 43
      * On modifie le temps avant expiration des infos sur le serveur memcached pour une clé choisie.
Please login to merge, or discard this patch.
src/interfaces/ICreateClasse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param string $nom     Le nom de la futur classe
20 20
      * @param array  $options Les options de la classe
21 21
      */
22
-    public function __construct($nom, $options=array());
22
+    public function __construct($nom, $options = array());
23 23
     
24 24
     /**
25 25
      * Retourne le contenu de la futur classe
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      * 
45 45
      * @return bool True si réussi, False si existe déjà.
46 46
      */
47
-    public function createAttribut($nom, $opt=array());
47
+    public function createAttribut($nom, $opt = array());
48 48
     
49 49
     /**
50 50
      * Créer une nouvelle méthode pour la classe
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      * @param string $porter La porté de la méthode. Par défaut private.
56 56
      * @return void
57 57
      */
58
-    public function createMethode($nom, $porter='private');
58
+    public function createMethode($nom, $porter = 'private');
59 59
     
60 60
     /**
61 61
      * Lance la génération de la classe.
Please login to merge, or discard this patch.