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
Push — master ( 374976...56f901 )
by Calima
04:14
created
Sistema/Nucleo/CFSesion.php 3 patches
Indentation   +126 added lines, -126 removed lines patch added patch discarded remove patch
@@ -41,155 +41,155 @@
 block discarded – undo
41 41
     private $bdchar     = CF_BD_CHAR;
42 42
     private $bdconector = CF_BD_CONECTOR;
43 43
     
44
-   public function __construct() {
45
-       session_regenerate_id(true);
46
-         // set our custom session functions.
47
-      session_set_save_handler(array($this, 'abrir'), array($this, 'cerrar'), array($this, 'leer'), array($this, 'escribir'), array($this, 'destruir'), array($this, 'gc'));
48
-      // This line prevents unexpected effects when using objects as save handlers.
49
-      register_shutdown_function('session_write_close');      
50
-   }   
51
-  /* public function __destruct() {
44
+    public function __construct() {
45
+        session_regenerate_id(true);
46
+            // set our custom session functions.
47
+        session_set_save_handler(array($this, 'abrir'), array($this, 'cerrar'), array($this, 'leer'), array($this, 'escribir'), array($this, 'destruir'), array($this, 'gc'));
48
+        // This line prevents unexpected effects when using objects as save handlers.
49
+        register_shutdown_function('session_write_close');      
50
+    }   
51
+    /* public function __destruct() {
52 52
       session_regenerate_id(true);
53 53
    }*/
54
-           function iniciarSesion($session_name, $secure) {
55
-      // Make sure the session cookie is not accessable via javascript.
56
-      $httpunico = true;
54
+            function iniciarSesion($session_name, $secure) {
55
+        // Make sure the session cookie is not accessable via javascript.
56
+        $httpunico = true;
57 57
 
58
-      // Hash algorithm to use for the sessionid. (use hash_algos() to get a list of available hashes.)
59
-      $sesion_hash = 'sha512';
58
+        // Hash algorithm to use for the sessionid. (use hash_algos() to get a list of available hashes.)
59
+        $sesion_hash = 'sha512';
60 60
 
61
-      // Check if hash is available
62
-      if (in_array($sesion_hash, hash_algos())) {
61
+        // Check if hash is available
62
+        if (in_array($sesion_hash, hash_algos())) {
63 63
         // Set the has function.
64 64
         ini_set('session.hash_function', $sesion_hash);
65
-      }
66
-      // How many bits per character of the hash.
67
-      // The possible values are '4' (0-9, a-f), '5' (0-9, a-v), and '6' (0-9, a-z, A-Z, "-", ",").
68
-      ini_set('session.hash_bits_per_character', 5);
69
-
70
-      // Force the session to only use cookies, not URL variables.
71
-      ini_set('session.use_only_cookies', 1);
72
-
73
-      // Get session cookie parameters 
74
-      $cookieParams = session_get_cookie_params(); 
75
-      // Set the parameters
76
-      session_set_cookie_params($cookieParams["lifetime"], $cookieParams["path"], $cookieParams["domain"], $secure, $httpunico); 
77
-      // Change the session name 
78
-      session_name($session_name);
79
-      // Now we cat start the session
80
-      session_start();
65
+        }
66
+        // How many bits per character of the hash.
67
+        // The possible values are '4' (0-9, a-f), '5' (0-9, a-v), and '6' (0-9, a-z, A-Z, "-", ",").
68
+        ini_set('session.hash_bits_per_character', 5);
69
+
70
+        // Force the session to only use cookies, not URL variables.
71
+        ini_set('session.use_only_cookies', 1);
72
+
73
+        // Get session cookie parameters 
74
+        $cookieParams = session_get_cookie_params(); 
75
+        // Set the parameters
76
+        session_set_cookie_params($cookieParams["lifetime"], $cookieParams["path"], $cookieParams["domain"], $secure, $httpunico); 
77
+        // Change the session name 
78
+        session_name($session_name);
79
+        // Now we cat start the session
80
+        session_start();
81 81
      
82
-      // This line regenerates the session and delete the old one. 
83
-      // It also generates a new encryption key in the database. 
82
+        // This line regenerates the session and delete the old one. 
83
+        // It also generates a new encryption key in the database. 
84 84
        
85
-   }
85
+    }
86 86
 
87 87
 // ingrese la informacion de conexion a su base de datos, debe ser igual a la que esta en CFConfiguracion.php
88
-   function abrir() {
89
-   $host = $this->host;
90
-   $user = $this->usuario;
91
-   $pass = $this->clave;
92
-   $name = $this->bdnombre;
88
+    function abrir() {
89
+    $host = $this->host;
90
+    $user = $this->usuario;
91
+    $pass = $this->clave;
92
+    $name = $this->bdnombre;
93 93
    
94
-   $mysqli = new \mysqli($host, $user, $pass, $name);
95
-   $this->db = $mysqli;
96
-   return true;
97
-   }
94
+    $mysqli = new \mysqli($host, $user, $pass, $name);
95
+    $this->db = $mysqli;
96
+    return true;
97
+    }
98 98
 
99
-   function cerrar() {
100
-      $this->db->close();
101
-      return true;
102
-   }
99
+    function cerrar() {
100
+        $this->db->close();
101
+        return true;
102
+    }
103 103
 
104 104
 
105
-   function leer($id) {
106
-      if(!isset($this->read_stmt)) {
107
-      $this->read_stmt = $this->db->prepare("SELECT data FROM sesiones WHERE id = ? LIMIT 1");
108
-   }
109
-   $this->read_stmt->bind_param('s', $id);
110
-   $this->read_stmt->execute();
111
-   $this->read_stmt->store_result();
112
-   $this->read_stmt->bind_result($data);
113
-   $this->read_stmt->fetch();
114
-   $key = $this->getkey($id);
115
-   $data = $this->decrypt($data, $key);
116
-   return $data;
117
-   }
105
+    function leer($id) {
106
+        if(!isset($this->read_stmt)) {
107
+        $this->read_stmt = $this->db->prepare("SELECT data FROM sesiones WHERE id = ? LIMIT 1");
108
+    }
109
+    $this->read_stmt->bind_param('s', $id);
110
+    $this->read_stmt->execute();
111
+    $this->read_stmt->store_result();
112
+    $this->read_stmt->bind_result($data);
113
+    $this->read_stmt->fetch();
114
+    $key = $this->getkey($id);
115
+    $data = $this->decrypt($data, $key);
116
+    return $data;
117
+    }
118 118
 
119 119
 
120 120
 
121 121
 
122 122
 
123
-   function escribir($id, $data) {
124
-      // Get unique key
125
-   $key = $this->getkey($id);
126
-   // Encrypt the data
127
-   $data = $this->encrypt($data, $key);
123
+    function escribir($id, $data) {
124
+        // Get unique key
125
+    $key = $this->getkey($id);
126
+    // Encrypt the data
127
+    $data = $this->encrypt($data, $key);
128 128
  
129
-   $time = time();
130
-   if(!isset($this->w_stmt)) {
131
-      $this->w_stmt = $this->db->prepare("REPLACE INTO sesiones (id, set_time, data, session_key) VALUES (?, ?, ?, ?)");
132
-   }
129
+    $time = time();
130
+    if(!isset($this->w_stmt)) {
131
+        $this->w_stmt = $this->db->prepare("REPLACE INTO sesiones (id, set_time, data, session_key) VALUES (?, ?, ?, ?)");
132
+    }
133 133
  
134
-   $this->w_stmt->bind_param('siss', $id, $time, $data, $key);
135
-   $this->w_stmt->execute();
136
-   return true;
137
-   }
138
-
139
-   function destruir($id) {
140
-      if(!isset($this->delete_stmt)) {
141
-      $this->delete_stmt = $this->db->prepare("DELETE FROM sesiones WHERE id = ?");
142
-   }
143
-   $this->delete_stmt->bind_param('s', $id);
144
-   $this->delete_stmt->execute();
145
-   return true;
146
-   }
147
-
148
-   function gc($max) {
149
-      if(!isset($this->gc_stmt)) {
150
-      $this->gc_stmt = $this->db->prepare("DELETE FROM sesiones WHERE set_time < ?");
151
-   }
152
-   $old = time() - $max;
153
-   $this->gc_stmt->bind_param('s', $old);
154
-   $this->gc_stmt->execute();
155
-   return true;
156
-   }
157
-
158
-   private function getkey($id) {
134
+    $this->w_stmt->bind_param('siss', $id, $time, $data, $key);
135
+    $this->w_stmt->execute();
136
+    return true;
137
+    }
138
+
139
+    function destruir($id) {
140
+        if(!isset($this->delete_stmt)) {
141
+        $this->delete_stmt = $this->db->prepare("DELETE FROM sesiones WHERE id = ?");
142
+    }
143
+    $this->delete_stmt->bind_param('s', $id);
144
+    $this->delete_stmt->execute();
145
+    return true;
146
+    }
147
+
148
+    function gc($max) {
149
+        if(!isset($this->gc_stmt)) {
150
+        $this->gc_stmt = $this->db->prepare("DELETE FROM sesiones WHERE set_time < ?");
151
+    }
152
+    $old = time() - $max;
153
+    $this->gc_stmt->bind_param('s', $old);
154
+    $this->gc_stmt->execute();
155
+    return true;
156
+    }
157
+
158
+    private function getkey($id) {
159 159
            
160 160
       
161
-      if(!isset($this->key_stmt)) {
162
-      $this->key_stmt = $this->db->prepare("SELECT session_key FROM sesiones WHERE id = ? LIMIT 1");
163
-   }
164
-   $this->key_stmt->bind_param('s', $id);
165
-   $this->key_stmt->execute();
166
-   $this->key_stmt->store_result();
167
-   if($this->key_stmt->num_rows == 1) { 
168
-      $this->key_stmt->bind_result($key);
169
-      $this->key_stmt->fetch();
170
-      return $key;
171
-   } else {
172
-      $random_key = hash('sha512', uniqid(mt_rand(1, mt_getrandmax()), true));
173
-      return $random_key;
174
-   }
175
-   }
176
-
177
-   private function encrypt($data, $key) {
178
-      $salt = 'cH!swe!retReGu7W6bEDRup7usuDUh9THeD2CHeGE*ewr4n39=E@rAsp7c-Ph@pH';
179
-      $key = substr(hash('sha256', $salt.$key.$salt), 0, 32);
180
-      $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
181
-      $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
182
-      $encrypted = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $data, MCRYPT_MODE_ECB, $iv));
183
-      return $encrypted;
184
-   }
185
-   private function decrypt($data, $key) {
186
-      $salt = 'cH!swe!retReGu7W6bEDRup7usuDUh9THeD2CHeGE*ewr4n39=E@rAsp7c-Ph@pH';
187
-      $key = substr(hash('sha256', $salt.$key.$salt), 0, 32);
188
-      $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
189
-      $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
190
-      $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, base64_decode($data), MCRYPT_MODE_ECB, $iv);
191
-      return $decrypted;
192
-   }
161
+        if(!isset($this->key_stmt)) {
162
+        $this->key_stmt = $this->db->prepare("SELECT session_key FROM sesiones WHERE id = ? LIMIT 1");
163
+    }
164
+    $this->key_stmt->bind_param('s', $id);
165
+    $this->key_stmt->execute();
166
+    $this->key_stmt->store_result();
167
+    if($this->key_stmt->num_rows == 1) { 
168
+        $this->key_stmt->bind_result($key);
169
+        $this->key_stmt->fetch();
170
+        return $key;
171
+    } else {
172
+        $random_key = hash('sha512', uniqid(mt_rand(1, mt_getrandmax()), true));
173
+        return $random_key;
174
+    }
175
+    }
176
+
177
+    private function encrypt($data, $key) {
178
+        $salt = 'cH!swe!retReGu7W6bEDRup7usuDUh9THeD2CHeGE*ewr4n39=E@rAsp7c-Ph@pH';
179
+        $key = substr(hash('sha256', $salt.$key.$salt), 0, 32);
180
+        $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
181
+        $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
182
+        $encrypted = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $data, MCRYPT_MODE_ECB, $iv));
183
+        return $encrypted;
184
+    }
185
+    private function decrypt($data, $key) {
186
+        $salt = 'cH!swe!retReGu7W6bEDRup7usuDUh9THeD2CHeGE*ewr4n39=E@rAsp7c-Ph@pH';
187
+        $key = substr(hash('sha256', $salt.$key.$salt), 0, 32);
188
+        $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
189
+        $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
190
+        $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, base64_decode($data), MCRYPT_MODE_ECB, $iv);
191
+        return $decrypted;
192
+    }
193 193
     
194 194
 }
195 195
 
Please login to merge, or discard this patch.
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -51,6 +51,10 @@  discard block
 block discarded – undo
51 51
   /* public function __destruct() {
52 52
       session_regenerate_id(true);
53 53
    }*/
54
+
55
+           /**
56
+            * @param string $session_name
57
+            */
54 58
            function iniciarSesion($session_name, $secure) {
55 59
       // Make sure the session cookie is not accessable via javascript.
56 60
       $httpunico = true;
@@ -136,6 +140,9 @@  discard block
 block discarded – undo
136 140
    return true;
137 141
    }
138 142
 
143
+   /**
144
+    * @param string $id
145
+    */
139 146
    function destruir($id) {
140 147
       if(!isset($this->delete_stmt)) {
141 148
       $this->delete_stmt = $this->db->prepare("DELETE FROM sesiones WHERE id = ?");
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
 
105 105
    function leer($id) {
106
-      if(!isset($this->read_stmt)) {
106
+      if (!isset($this->read_stmt)) {
107 107
       $this->read_stmt = $this->db->prepare("SELECT data FROM sesiones WHERE id = ? LIMIT 1");
108 108
    }
109 109
    $this->read_stmt->bind_param('s', $id);
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
    $data = $this->encrypt($data, $key);
128 128
  
129 129
    $time = time();
130
-   if(!isset($this->w_stmt)) {
130
+   if (!isset($this->w_stmt)) {
131 131
       $this->w_stmt = $this->db->prepare("REPLACE INTO sesiones (id, set_time, data, session_key) VALUES (?, ?, ?, ?)");
132 132
    }
133 133
  
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
    }
138 138
 
139 139
    function destruir($id) {
140
-      if(!isset($this->delete_stmt)) {
140
+      if (!isset($this->delete_stmt)) {
141 141
       $this->delete_stmt = $this->db->prepare("DELETE FROM sesiones WHERE id = ?");
142 142
    }
143 143
    $this->delete_stmt->bind_param('s', $id);
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
    }
147 147
 
148 148
    function gc($max) {
149
-      if(!isset($this->gc_stmt)) {
149
+      if (!isset($this->gc_stmt)) {
150 150
       $this->gc_stmt = $this->db->prepare("DELETE FROM sesiones WHERE set_time < ?");
151 151
    }
152 152
    $old = time() - $max;
@@ -158,13 +158,13 @@  discard block
 block discarded – undo
158 158
    private function getkey($id) {
159 159
            
160 160
       
161
-      if(!isset($this->key_stmt)) {
161
+      if (!isset($this->key_stmt)) {
162 162
       $this->key_stmt = $this->db->prepare("SELECT session_key FROM sesiones WHERE id = ? LIMIT 1");
163 163
    }
164 164
    $this->key_stmt->bind_param('s', $id);
165 165
    $this->key_stmt->execute();
166 166
    $this->key_stmt->store_result();
167
-   if($this->key_stmt->num_rows == 1) { 
167
+   if ($this->key_stmt->num_rows == 1) { 
168 168
       $this->key_stmt->bind_result($key);
169 169
       $this->key_stmt->fetch();
170 170
       return $key;
Please login to merge, or discard this patch.
Sistema/Nucleo/CFSolicitud.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     private $_argumentos;
33 33
     
34 34
     public function __construct() {
35
-        if(isset($_GET['url'])){
35
+        if (isset($_GET['url'])) {
36 36
             $url = filter_input(INPUT_GET, 'url', FILTER_SANITIZE_URL);
37 37
             $url = explode('/', $url);
38 38
             $url = array_filter($url);
@@ -46,15 +46,15 @@  discard block
 block discarded – undo
46 46
             $this->setArgumentos($url);
47 47
         }       
48 48
         
49
-        if(!$this->getControlador()){
49
+        if (!$this->getControlador()) {
50 50
             $this->setControlador(CONTROLADOR_INICIAL);
51 51
         }
52 52
         
53
-        if(!$this->getMetodo()){
53
+        if (!$this->getMetodo()) {
54 54
             $this->setMetodo('index');
55 55
         }
56 56
         
57
-        if(null!==($this->getArgumentos())){
57
+        if (null !== ($this->getArgumentos())) {
58 58
             $this->setArgumentos(array());
59 59
         }
60 60
     }
@@ -76,16 +76,16 @@  discard block
 block discarded – undo
76 76
     
77 77
     public function setControlador($controlador)
78 78
     {
79
-        return $this->_controlador=$controlador;
79
+        return $this->_controlador = $controlador;
80 80
     }
81 81
     
82 82
     public function setMetodo($metodo)
83 83
     {
84
-        return $this->_metodo=$metodo;
84
+        return $this->_metodo = $metodo;
85 85
     }
86 86
     
87 87
     public function setArgumentos($argumento)
88 88
     {
89
-        return $this->_argumentos=$argumento;
89
+        return $this->_argumentos = $argumento;
90 90
     }
91 91
 }
Please login to merge, or discard this patch.
vendor/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 // autoload.php @generated by Composer
4 4
 
5
-require_once __DIR__ . '/composer' . '/autoload_real.php';
5
+require_once __DIR__.'/composer'.'/autoload_real.php';
6 6
 
7 7
 return ComposerAutoloaderInit37b7553aa02ca13cf02c966b49fecf89::getLoader();
Please login to merge, or discard this patch.
vendor/composer/autoload_namespaces.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
10
-    'Symfony\\Bridge\\Swiftmailer\\' => array($vendorDir . '/symfony/swiftmailer-bridge'),
9
+    'Symfony\\Component\\Console\\' => array($vendorDir.'/symfony/console'),
10
+    'Symfony\\Bridge\\Swiftmailer\\' => array($vendorDir.'/symfony/swiftmailer-bridge'),
11 11
 );
Please login to merge, or discard this patch.
vendor/composer/autoload_files.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php',
10
-    $vendorDir . '/vrana/notorm/NotORM.php',
9
+    $vendorDir.'/swiftmailer/swiftmailer/lib/swift_required.php',
10
+    $vendorDir.'/vrana/notorm/NotORM.php',
11 11
 );
Please login to merge, or discard this patch.
vendor/composer/autoload_classmap.php 1 patch
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -6,53 +6,53 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    'DatabaseProvider' => $baseDir . '/Sistema/librerias/ORMbasico/DatabaseProvider.php',
10
-    'MySqlProvider' => $baseDir . '/Sistema/librerias/ORMbasico/Database.php',
11
-    'ORM' => $baseDir . '/Sistema/librerias/ORMbasico/ORM.php',
12
-    'R' => $baseDir . '/Sistema/librerias/rb.php',
13
-    'RedBeanPHP\\Adapter' => $baseDir . '/Sistema/librerias/rb.php',
14
-    'RedBeanPHP\\Adapter\\DBAdapter' => $baseDir . '/Sistema/librerias/rb.php',
15
-    'RedBeanPHP\\AssociationManager' => $baseDir . '/Sistema/librerias/rb.php',
16
-    'RedBeanPHP\\BeanCollection' => $baseDir . '/Sistema/librerias/rb.php',
17
-    'RedBeanPHP\\BeanHelper' => $baseDir . '/Sistema/librerias/rb.php',
18
-    'RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper' => $baseDir . '/Sistema/librerias/rb.php',
19
-    'RedBeanPHP\\Cursor' => $baseDir . '/Sistema/librerias/rb.php',
20
-    'RedBeanPHP\\Cursor\\NullCursor' => $baseDir . '/Sistema/librerias/rb.php',
21
-    'RedBeanPHP\\Cursor\\PDOCursor' => $baseDir . '/Sistema/librerias/rb.php',
22
-    'RedBeanPHP\\Driver' => $baseDir . '/Sistema/librerias/rb.php',
23
-    'RedBeanPHP\\Driver\\RPDO' => $baseDir . '/Sistema/librerias/rb.php',
24
-    'RedBeanPHP\\DuplicationManager' => $baseDir . '/Sistema/librerias/rb.php',
25
-    'RedBeanPHP\\Facade' => $baseDir . '/Sistema/librerias/rb.php',
26
-    'RedBeanPHP\\Finder' => $baseDir . '/Sistema/librerias/rb.php',
27
-    'RedBeanPHP\\LabelMaker' => $baseDir . '/Sistema/librerias/rb.php',
28
-    'RedBeanPHP\\Logger' => $baseDir . '/Sistema/librerias/rb.php',
29
-    'RedBeanPHP\\Logger\\RDefault' => $baseDir . '/Sistema/librerias/rb.php',
30
-    'RedBeanPHP\\Logger\\RDefault\\Debug' => $baseDir . '/Sistema/librerias/rb.php',
31
-    'RedBeanPHP\\OODB' => $baseDir . '/Sistema/librerias/rb.php',
32
-    'RedBeanPHP\\OODBBean' => $baseDir . '/Sistema/librerias/rb.php',
33
-    'RedBeanPHP\\Observable' => $baseDir . '/Sistema/librerias/rb.php',
34
-    'RedBeanPHP\\Observer' => $baseDir . '/Sistema/librerias/rb.php',
35
-    'RedBeanPHP\\Plugin' => $baseDir . '/Sistema/librerias/rb.php',
36
-    'RedBeanPHP\\QueryWriter' => $baseDir . '/Sistema/librerias/rb.php',
37
-    'RedBeanPHP\\QueryWriter\\AQueryWriter' => $baseDir . '/Sistema/librerias/rb.php',
38
-    'RedBeanPHP\\QueryWriter\\MySQL' => $baseDir . '/Sistema/librerias/rb.php',
39
-    'RedBeanPHP\\QueryWriter\\PostgreSQL' => $baseDir . '/Sistema/librerias/rb.php',
40
-    'RedBeanPHP\\QueryWriter\\SQLiteT' => $baseDir . '/Sistema/librerias/rb.php',
41
-    'RedBeanPHP\\RedException' => $baseDir . '/Sistema/librerias/rb.php',
42
-    'RedBeanPHP\\RedException\\SQL' => $baseDir . '/Sistema/librerias/rb.php',
43
-    'RedBeanPHP\\Repository' => $baseDir . '/Sistema/librerias/rb.php',
44
-    'RedBeanPHP\\Repository\\Fluid' => $baseDir . '/Sistema/librerias/rb.php',
45
-    'RedBeanPHP\\Repository\\Frozen' => $baseDir . '/Sistema/librerias/rb.php',
46
-    'RedBeanPHP\\SimpleModel' => $baseDir . '/Sistema/librerias/rb.php',
47
-    'RedBeanPHP\\SimpleModelHelper' => $baseDir . '/Sistema/librerias/rb.php',
48
-    'RedBeanPHP\\TagManager' => $baseDir . '/Sistema/librerias/rb.php',
49
-    'RedBeanPHP\\ToolBox' => $baseDir . '/Sistema/librerias/rb.php',
50
-    'RedBean_SimpleModel' => $baseDir . '/Sistema/librerias/rb.php',
51
-    'Sistema\\Ayudantes\\CFPHPAyuda' => $baseDir . '/Sistema/Ayudantes/CFPHPAyuda.php',
52
-    'Sistema\\Ayudantes\\CFPHPCache' => $baseDir . '/Sistema/Ayudantes/CFPHPCache.php',
53
-    'Sistema\\Ayudantes\\CFPHPFormularios' => $baseDir . '/Sistema/Ayudantes/CFPHPFormularios.php',
54
-    'Sistema\\Ayudantes\\CFPHPMenu' => $baseDir . '/Sistema/Ayudantes/CFPHPMenu.php',
55
-    'Sistema\\Ayudantes\\CFPHPSeguridad' => $baseDir . '/Sistema/Ayudantes/CFPHPSeguridad.php',
56
-    'Sistema\\Ayudantes\\CFPHPVinculos' => $baseDir . '/Sistema/Ayudantes/CFPHPVinculos.php',
57
-    'Sistema\\Ayudantes\\Cf_PHPPaginator' => $baseDir . '/Sistema/Ayudantes/CFPHPPaginador.php',
9
+    'DatabaseProvider' => $baseDir.'/Sistema/librerias/ORMbasico/DatabaseProvider.php',
10
+    'MySqlProvider' => $baseDir.'/Sistema/librerias/ORMbasico/Database.php',
11
+    'ORM' => $baseDir.'/Sistema/librerias/ORMbasico/ORM.php',
12
+    'R' => $baseDir.'/Sistema/librerias/rb.php',
13
+    'RedBeanPHP\\Adapter' => $baseDir.'/Sistema/librerias/rb.php',
14
+    'RedBeanPHP\\Adapter\\DBAdapter' => $baseDir.'/Sistema/librerias/rb.php',
15
+    'RedBeanPHP\\AssociationManager' => $baseDir.'/Sistema/librerias/rb.php',
16
+    'RedBeanPHP\\BeanCollection' => $baseDir.'/Sistema/librerias/rb.php',
17
+    'RedBeanPHP\\BeanHelper' => $baseDir.'/Sistema/librerias/rb.php',
18
+    'RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper' => $baseDir.'/Sistema/librerias/rb.php',
19
+    'RedBeanPHP\\Cursor' => $baseDir.'/Sistema/librerias/rb.php',
20
+    'RedBeanPHP\\Cursor\\NullCursor' => $baseDir.'/Sistema/librerias/rb.php',
21
+    'RedBeanPHP\\Cursor\\PDOCursor' => $baseDir.'/Sistema/librerias/rb.php',
22
+    'RedBeanPHP\\Driver' => $baseDir.'/Sistema/librerias/rb.php',
23
+    'RedBeanPHP\\Driver\\RPDO' => $baseDir.'/Sistema/librerias/rb.php',
24
+    'RedBeanPHP\\DuplicationManager' => $baseDir.'/Sistema/librerias/rb.php',
25
+    'RedBeanPHP\\Facade' => $baseDir.'/Sistema/librerias/rb.php',
26
+    'RedBeanPHP\\Finder' => $baseDir.'/Sistema/librerias/rb.php',
27
+    'RedBeanPHP\\LabelMaker' => $baseDir.'/Sistema/librerias/rb.php',
28
+    'RedBeanPHP\\Logger' => $baseDir.'/Sistema/librerias/rb.php',
29
+    'RedBeanPHP\\Logger\\RDefault' => $baseDir.'/Sistema/librerias/rb.php',
30
+    'RedBeanPHP\\Logger\\RDefault\\Debug' => $baseDir.'/Sistema/librerias/rb.php',
31
+    'RedBeanPHP\\OODB' => $baseDir.'/Sistema/librerias/rb.php',
32
+    'RedBeanPHP\\OODBBean' => $baseDir.'/Sistema/librerias/rb.php',
33
+    'RedBeanPHP\\Observable' => $baseDir.'/Sistema/librerias/rb.php',
34
+    'RedBeanPHP\\Observer' => $baseDir.'/Sistema/librerias/rb.php',
35
+    'RedBeanPHP\\Plugin' => $baseDir.'/Sistema/librerias/rb.php',
36
+    'RedBeanPHP\\QueryWriter' => $baseDir.'/Sistema/librerias/rb.php',
37
+    'RedBeanPHP\\QueryWriter\\AQueryWriter' => $baseDir.'/Sistema/librerias/rb.php',
38
+    'RedBeanPHP\\QueryWriter\\MySQL' => $baseDir.'/Sistema/librerias/rb.php',
39
+    'RedBeanPHP\\QueryWriter\\PostgreSQL' => $baseDir.'/Sistema/librerias/rb.php',
40
+    'RedBeanPHP\\QueryWriter\\SQLiteT' => $baseDir.'/Sistema/librerias/rb.php',
41
+    'RedBeanPHP\\RedException' => $baseDir.'/Sistema/librerias/rb.php',
42
+    'RedBeanPHP\\RedException\\SQL' => $baseDir.'/Sistema/librerias/rb.php',
43
+    'RedBeanPHP\\Repository' => $baseDir.'/Sistema/librerias/rb.php',
44
+    'RedBeanPHP\\Repository\\Fluid' => $baseDir.'/Sistema/librerias/rb.php',
45
+    'RedBeanPHP\\Repository\\Frozen' => $baseDir.'/Sistema/librerias/rb.php',
46
+    'RedBeanPHP\\SimpleModel' => $baseDir.'/Sistema/librerias/rb.php',
47
+    'RedBeanPHP\\SimpleModelHelper' => $baseDir.'/Sistema/librerias/rb.php',
48
+    'RedBeanPHP\\TagManager' => $baseDir.'/Sistema/librerias/rb.php',
49
+    'RedBeanPHP\\ToolBox' => $baseDir.'/Sistema/librerias/rb.php',
50
+    'RedBean_SimpleModel' => $baseDir.'/Sistema/librerias/rb.php',
51
+    'Sistema\\Ayudantes\\CFPHPAyuda' => $baseDir.'/Sistema/Ayudantes/CFPHPAyuda.php',
52
+    'Sistema\\Ayudantes\\CFPHPCache' => $baseDir.'/Sistema/Ayudantes/CFPHPCache.php',
53
+    'Sistema\\Ayudantes\\CFPHPFormularios' => $baseDir.'/Sistema/Ayudantes/CFPHPFormularios.php',
54
+    'Sistema\\Ayudantes\\CFPHPMenu' => $baseDir.'/Sistema/Ayudantes/CFPHPMenu.php',
55
+    'Sistema\\Ayudantes\\CFPHPSeguridad' => $baseDir.'/Sistema/Ayudantes/CFPHPSeguridad.php',
56
+    'Sistema\\Ayudantes\\CFPHPVinculos' => $baseDir.'/Sistema/Ayudantes/CFPHPVinculos.php',
57
+    'Sistema\\Ayudantes\\Cf_PHPPaginator' => $baseDir.'/Sistema/Ayudantes/CFPHPPaginador.php',
58 58
 );
Please login to merge, or discard this patch.
vendor/composer/autoload_psr4.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    'Symfony\\Bundle\\SwiftmailerBundle\\' => array($vendorDir . '/symfony/swiftmailer-bundle'),
10
-    'Sistema\\Nucleo\\' => array($baseDir . '/Sistema/Nucleo'),
11
-    'Sistema\\Librerias\\' => array($baseDir . '/Sistema/Librerias'),
12
-    'Sistema\\Ayudantes\\' => array($baseDir . '/Sistema/Ayudantes'),
9
+    'Symfony\\Bundle\\SwiftmailerBundle\\' => array($vendorDir.'/symfony/swiftmailer-bundle'),
10
+    'Sistema\\Nucleo\\' => array($baseDir.'/Sistema/Nucleo'),
11
+    'Sistema\\Librerias\\' => array($baseDir.'/Sistema/Librerias'),
12
+    'Sistema\\Ayudantes\\' => array($baseDir.'/Sistema/Ayudantes'),
13 13
 );
Please login to merge, or discard this patch.
vendor/composer/autoload_real.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     public static function loadClassLoader($class)
10 10
     {
11 11
         if ('Composer\Autoload\ClassLoader' === $class) {
12
-            require __DIR__ . '/ClassLoader.php';
12
+            require __DIR__.'/ClassLoader.php';
13 13
         }
14 14
     }
15 15
 
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24 24
         spl_autoload_unregister(array('ComposerAutoloaderInit37b7553aa02ca13cf02c966b49fecf89', 'loadClassLoader'));
25 25
 
26
-        $map = require __DIR__ . '/autoload_namespaces.php';
26
+        $map = require __DIR__.'/autoload_namespaces.php';
27 27
         foreach ($map as $namespace => $path) {
28 28
             $loader->set($namespace, $path);
29 29
         }
30 30
 
31
-        $map = require __DIR__ . '/autoload_psr4.php';
31
+        $map = require __DIR__.'/autoload_psr4.php';
32 32
         foreach ($map as $namespace => $path) {
33 33
             $loader->setPsr4($namespace, $path);
34 34
         }
35 35
 
36
-        $classMap = require __DIR__ . '/autoload_classmap.php';
36
+        $classMap = require __DIR__.'/autoload_classmap.php';
37 37
         if ($classMap) {
38 38
             $loader->addClassMap($classMap);
39 39
         }
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Shell.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
                 ;
104 104
 
105 105
                 $output = $this->output;
106
-                $process->run(function ($type, $data) use ($output) {
106
+                $process->run(function($type, $data) use ($output) {
107 107
                     $output->writeln($data);
108 108
                 });
109 109
 
Please login to merge, or discard this patch.