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 — develop (#141)
by Gwenaël
14:16 queued 08:27
created
system/libraries/Javascript/Jquery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
 	 */
79 79
 	public function __construct()
80 80
 	{
81
-		$this->CI =& get_instance();
81
+		$this->CI = & get_instance();
82 82
 		log_message('info', 'Parser Class Initialized');
83 83
 	}
84 84
 
Please login to merge, or discard this patch.
system/libraries/Cache/drivers/Cache_redis.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	{
82 82
 		parent::__construct($params);
83 83
 
84
-		$CI =& get_instance();
84
+		$CI = & get_instance();
85 85
 		isset($CI->db) OR $CI->load->database();
86 86
 		$this->_db = $CI->db;
87 87
 
Please login to merge, or discard this patch.
system/libraries/Cache/drivers/Cache_memcached.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	{
82 82
 		parent::__construct($params);
83 83
 
84
-		$CI =& get_instance();
84
+		$CI = & get_instance();
85 85
 		isset($CI->db) OR $CI->load->database();
86 86
 		$this->_db = $CI->db;
87 87
 
Please login to merge, or discard this patch.
system/libraries/Cache/drivers/Cache_file.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	{
82 82
 		parent::__construct($params);
83 83
 
84
-		$CI =& get_instance();
84
+		$CI = & get_instance();
85 85
 		isset($CI->db) OR $CI->load->database();
86 86
 		$this->_db = $CI->db;
87 87
 
Please login to merge, or discard this patch.
application/config/auth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
  * @link        http://sprintphp.com
30 30
  * @since       Version 1.0
31 31
  */
32
-if (!defined('BASEPATH')) exit('No direct script access allowed');
32
+if ( ! defined('BASEPATH')) exit('No direct script access allowed');
33 33
 
34 34
 use \Myth\Events\Events as Events;
35 35
 use Myth\Mail\Mail as Mail;
Please login to merge, or discard this patch.
application/database/migrations/20141020184926_Create_settings_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 class Migration_Createsessiontable extends CI_Migration {
12 12
 
13
-    public function up ()
13
+    public function up()
14 14
     {
15 15
         $fields = array(
16 16
             'id' => array(
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     //--------------------------------------------------------------------
49 49
 
50
-    public function down ()
50
+    public function down()
51 51
     {
52 52
         $this->dbforge->drop_table('ci_sessions');
53 53
     }
Please login to merge, or discard this patch.
application/database/migrations/20141010063911_Create_user_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 class Migration_Createsessiontable extends CI_Migration {
12 12
 
13
-    public function up ()
13
+    public function up()
14 14
     {
15 15
         $fields = array(
16 16
             'id' => array(
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     //--------------------------------------------------------------------
49 49
 
50
-    public function down ()
50
+    public function down()
51 51
     {
52 52
         $this->dbforge->drop_table('ci_sessions');
53 53
     }
Please login to merge, or discard this patch.
database/migrations/20141211054140_Create_authorization_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 class Migration_Createsessiontable extends CI_Migration {
12 12
 
13
-    public function up ()
13
+    public function up()
14 14
     {
15 15
         $fields = array(
16 16
             'id' => array(
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     //--------------------------------------------------------------------
49 49
 
50
-    public function down ()
50
+    public function down()
51 51
     {
52 52
         $this->dbforge->drop_table('ci_sessions');
53 53
     }
Please login to merge, or discard this patch.
application/database/migrations/20141105055640_Create_mail_queue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 class Migration_Createsessiontable extends CI_Migration {
12 12
 
13
-    public function up ()
13
+    public function up()
14 14
     {
15 15
         $fields = array(
16 16
             'id' => array(
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     //--------------------------------------------------------------------
49 49
 
50
-    public function down ()
50
+    public function down()
51 51
     {
52 52
         $this->dbforge->drop_table('ci_sessions');
53 53
     }
Please login to merge, or discard this patch.