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 ( eb7034...336670 )
by
unknown
10:15
created
config/session.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 return [
4 4
 
5
-	/*
5
+    /*
6 6
 	|--------------------------------------------------------------------------
7 7
 	| Default Session Driver
8 8
 	|--------------------------------------------------------------------------
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 	|
17 17
 	*/
18 18
 
19
-	'driver' => env('SESSION_DRIVER', 'file'),
19
+    'driver' => env('SESSION_DRIVER', 'file'),
20 20
 
21
-	/*
21
+    /*
22 22
 	|--------------------------------------------------------------------------
23 23
 	| Session Lifetime
24 24
 	|--------------------------------------------------------------------------
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
 	|
30 30
 	*/
31 31
 
32
-	'lifetime' => 120,
32
+    'lifetime' => 120,
33 33
 
34
-	'expire_on_close' => false,
34
+    'expire_on_close' => false,
35 35
 
36
-	/*
36
+    /*
37 37
 	|--------------------------------------------------------------------------
38 38
 	| Session Encryption
39 39
 	|--------------------------------------------------------------------------
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
 	|
45 45
 	*/
46 46
 
47
-	'encrypt' => false,
47
+    'encrypt' => false,
48 48
 
49
-	/*
49
+    /*
50 50
 	|--------------------------------------------------------------------------
51 51
 	| Session File Location
52 52
 	|--------------------------------------------------------------------------
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
 	|
58 58
 	*/
59 59
 
60
-	'files' => storage_path('framework/sessions'),
60
+    'files' => storage_path('framework/sessions'),
61 61
 
62
-	/*
62
+    /*
63 63
 	|--------------------------------------------------------------------------
64 64
 	| Session Database Connection
65 65
 	|--------------------------------------------------------------------------
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
 	|
71 71
 	*/
72 72
 
73
-	'connection' => null,
73
+    'connection' => null,
74 74
 
75
-	/*
75
+    /*
76 76
 	|--------------------------------------------------------------------------
77 77
 	| Session Database Table
78 78
 	|--------------------------------------------------------------------------
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
 	|
84 84
 	*/
85 85
 
86
-	'table' => 'sessions',
86
+    'table' => 'sessions',
87 87
 
88
-	/*
88
+    /*
89 89
 	|--------------------------------------------------------------------------
90 90
 	| Session Sweeping Lottery
91 91
 	|--------------------------------------------------------------------------
@@ -96,9 +96,9 @@  discard block
 block discarded – undo
96 96
 	|
97 97
 	*/
98 98
 
99
-	'lottery' => [2, 100],
99
+    'lottery' => [2, 100],
100 100
 
101
-	/*
101
+    /*
102 102
 	|--------------------------------------------------------------------------
103 103
 	| Session Cookie Name
104 104
 	|--------------------------------------------------------------------------
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
 	|
110 110
 	*/
111 111
 
112
-	'cookie' => 'laravel_session',
112
+    'cookie' => 'laravel_session',
113 113
 
114
-	/*
114
+    /*
115 115
 	|--------------------------------------------------------------------------
116 116
 	| Session Cookie Path
117 117
 	|--------------------------------------------------------------------------
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
 	|
123 123
 	*/
124 124
 
125
-	'path' => '/',
125
+    'path' => '/',
126 126
 
127
-	/*
127
+    /*
128 128
 	|--------------------------------------------------------------------------
129 129
 	| Session Cookie Domain
130 130
 	|--------------------------------------------------------------------------
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
 	|
136 136
 	*/
137 137
 
138
-	'domain' => null,
138
+    'domain' => null,
139 139
 
140
-	/*
140
+    /*
141 141
 	|--------------------------------------------------------------------------
142 142
 	| HTTPS Only Cookies
143 143
 	|--------------------------------------------------------------------------
@@ -148,6 +148,6 @@  discard block
 block discarded – undo
148 148
 	|
149 149
 	*/
150 150
 
151
-	'secure' => false,
151
+    'secure' => false,
152 152
 
153 153
 ];
Please login to merge, or discard this patch.
config/view.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 return [
4 4
 
5
-	/*
5
+    /*
6 6
 	|--------------------------------------------------------------------------
7 7
 	| View Storage Paths
8 8
 	|--------------------------------------------------------------------------
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
 	|
14 14
 	*/
15 15
 
16
-	'paths' => [
17
-		realpath(base_path('resources/views'))
18
-	],
16
+    'paths' => [
17
+        realpath(base_path('resources/views'))
18
+    ],
19 19
 
20
-	/*
20
+    /*
21 21
 	|--------------------------------------------------------------------------
22 22
 	| Compiled View Path
23 23
 	|--------------------------------------------------------------------------
@@ -28,6 +28,6 @@  discard block
 block discarded – undo
28 28
 	|
29 29
 	*/
30 30
 
31
-	'compiled' => realpath(storage_path('framework/views')),
31
+    'compiled' => realpath(storage_path('framework/views')),
32 32
 
33 33
 ];
Please login to merge, or discard this patch.
resources/UIObjects/Permission/Permission.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         $inheritMode = null;
74 74
 
75 75
         $grant = $args['grant'];
76
-         $title = $args['title'];
76
+            $title = $args['title'];
77 77
         if (isset($args['mode'])) {
78 78
             $inheritMode = $args['mode'];
79 79
         }
Please login to merge, or discard this patch.
resources/lang/en/pagination.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 return [
4 4
 
5
-	/*
5
+    /*
6 6
     |--------------------------------------------------------------------------
7 7
     | Pagination Language Lines
8 8
     |--------------------------------------------------------------------------
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     |
14 14
     */
15 15
 
16
-	'previous' => '« Previous',
17
-	'next'     => 'Next »',
16
+    'previous' => '« Previous',
17
+    'next'     => 'Next »',
18 18
 
19 19
 ];
Please login to merge, or discard this patch.
resources/lang/en/passwords.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 return [
4 4
 
5
-	/*
5
+    /*
6 6
     |--------------------------------------------------------------------------
7 7
     | Password Reminder Language Lines
8 8
     |--------------------------------------------------------------------------
@@ -13,10 +13,10 @@  discard block
 block discarded – undo
13 13
     |
14 14
     */
15 15
 
16
-	'password' => 'Passwords must be at least six characters and match the confirmation.',
17
-	'reset' => 'Your password has been reset!',
18
-	'sent' => 'We have e-mailed your password reset link!',
19
-	'token' => 'This password reset token is invalid.',
20
-	'user' => "We can't find a user with that e-mail address.",
16
+    'password' => 'Passwords must be at least six characters and match the confirmation.',
17
+    'reset' => 'Your password has been reset!',
18
+    'sent' => 'We have e-mailed your password reset link!',
19
+    'token' => 'This password reset token is invalid.',
20
+    'user' => "We can't find a user with that e-mail address.",
21 21
 
22 22
 ];
Please login to merge, or discard this patch.
server.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
  */
9 9
 
10 10
 $uri = urldecode(
11
-	parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
11
+    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
12 12
 );
13 13
 
14 14
 // This file allows us to emulate Apache's "mod_rewrite" functionality from the
15 15
 // built-in PHP web server. This provides a convenient way to test a Laravel
16 16
 // application without having installed a "real" web server software here.
17 17
 if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
18
-	return false;
18
+    return false;
19 19
 }
20 20
 
21 21
 require_once __DIR__.'/index.php';
Please login to merge, or discard this patch.
core/src/Xpressengine/Widget/WidgetHandler.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -283,7 +283,6 @@
 block discarded – undo
283 283
 
284 284
     /**
285 285
      * validateDBInfo
286
-
287 286
      * @param                 $dbInfo
288 287
      *
289 288
      * @return bool
Please login to merge, or discard this patch.
core/tests/Document/DocumentHandlerTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@
 block discarded – undo
25 25
     protected $request;
26 26
 
27 27
         /**
28
-     * tear down
29
-     *
30
-     * @return void
31
-     */
28
+         * tear down
29
+         *
30
+         * @return void
31
+         */
32 32
     public function tearDown()
33 33
     {
34 34
         m::close();
Please login to merge, or discard this patch.
app/Http/routes.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -244,11 +244,11 @@
 block discarded – undo
244 244
 
245 245
         // create
246 246
         Route::get('create',
247
-                   [
248
-                       'as' => 'settings.member.create',
249
-                       'uses' => 'Member\Settings\UserController@create',
250
-                       'settings_menu' => 'member.create'
251
-                   ]
247
+                    [
248
+                        'as' => 'settings.member.create',
249
+                        'uses' => 'Member\Settings\UserController@create',
250
+                        'settings_menu' => 'member.create'
251
+                    ]
252 252
         );
253 253
         Route::post(
254 254
             'store',
Please login to merge, or discard this patch.