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
Pull Request — master (#5)
by
unknown
09:16 queued 04:51
created
Sistema/Nucleo/CFControlador.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
         $this->_vista = new CFVista(new CFSolicitud);
35 35
     }
36 36
     
37
-    protected function cargaLib($libreria){
37
+    protected function cargaLib($libreria) {
38 38
         $rutaLib = RUTA_LIBS . $libreria . '.php';
39
-        if(is_readable($rutaLib)){
40
-            require_once $rutaLib;//deberia maperas con composer sugerencia
39
+        if (is_readable($rutaLib)) {
40
+            require_once $rutaLib; //deberia maperas con composer sugerencia
41 41
            //echo 'libreria cargada';
42 42
         }
43 43
         else {
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
         }
46 46
     }
47 47
     
48
-    protected function cargaModelo($modelo){
49
-        $modelo=$modelo.'Modelo';
48
+    protected function cargaModelo($modelo) {
49
+        $modelo = $modelo . 'Modelo';
50 50
        $rutaMod = RUTA_MOD . $modelo . '.php';
51
-        if(is_readable($rutaMod)){
52
-            require_once $rutaMod;//deberia maperas con composer sugerencia
51
+        if (is_readable($rutaMod)) {
52
+            require_once $rutaMod; //deberia maperas con composer sugerencia
53 53
             $modelo = new $modelo;
54 54
             return $modelo;
55 55
            //echo 'modelo cargado';
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
         }
64 64
     }
65 65
     
66
-    protected function cargaAyudante($ayudante){
66
+    protected function cargaAyudante($ayudante) {
67 67
        $rutaAyudante = RUTA_AYUDANTES . $ayudante . '.php';
68
-        if(is_readable($rutaAyudante)){
68
+        if (is_readable($rutaAyudante)) {
69 69
             require_once $rutaAyudante;
70 70
            //echo 'libreria cargada';
71 71
         }
Please login to merge, or discard this patch.