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
core/tests/Plugin/PluginHandlerTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         $handler = $this->getHandler(null, $plugins);
123 123
         $config = $this->setConfig($handler);
124 124
         $config->shouldReceive('getVal')->with('plugin.list', [])->once()->andReturn([
125
-           $pluginId => []
125
+            $pluginId => []
126 126
         ]);
127 127
         $config->shouldReceive('setVal')->withAnyArgs()->once()->andReturnNull();
128 128
 
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         $handler = $this->getHandler(null, $plugins);
175 175
         $config = $this->setConfig($handler);
176 176
         $config->shouldReceive('getVal')->with('plugin.list', [])->once()->andReturn([
177
-           $pluginId => []
177
+            $pluginId => []
178 178
         ]);
179 179
         $config->shouldReceive('setVal')->withAnyArgs()->once()->andReturnNull();
180 180
 
Please login to merge, or discard this patch.
core/tests/Plugin/plugins/plugin_sample/plugin.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
         );
65 65
 
66 66
         $args::get('/manage', function () {
67
-           return 'hihihi';
67
+            return 'hihihi';
68 68
         });
69 69
     }
70 70
 
Please login to merge, or discard this patch.
app/Console/Commands/Inspire.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -7,27 +7,27 @@
 block discarded – undo
7 7
 
8 8
 class Inspire extends Command
9 9
 {
10
-	/**
11
-	 * The name and signature of the console command.
12
-	 *
13
-	 * @var string
14
-	 */
15
-	protected $signature = 'inspire';
10
+    /**
11
+     * The name and signature of the console command.
12
+     *
13
+     * @var string
14
+     */
15
+    protected $signature = 'inspire';
16 16
 
17
-	/**
18
-	 * The console command description.
19
-	 *
20
-	 * @var string
21
-	 */
22
-	protected $description = 'Display an inspiring quote';
17
+    /**
18
+     * The console command description.
19
+     *
20
+     * @var string
21
+     */
22
+    protected $description = 'Display an inspiring quote';
23 23
 
24
-	/**
25
-	 * Execute the console command.
26
-	 *
27
-	 * @return mixed
28
-	 */
29
-	public function handle()
30
-	{
31
-		$this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);
32
-	}
24
+    /**
25
+     * Execute the console command.
26
+     *
27
+     * @return mixed
28
+     */
29
+    public function handle()
30
+    {
31
+        $this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);
32
+    }
33 33
 }
Please login to merge, or discard this patch.
app/Console/Commands/XeInstall.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.
app/Events/Event.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,5 +2,5 @@
 block discarded – undo
2 2
 
3 3
 abstract class Event
4 4
 {
5
-	//
5
+    //
6 6
 }
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/PasswordController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 class PasswordController extends Controller {
14 14
 
15
-	/*
15
+    /*
16 16
 	|--------------------------------------------------------------------------
17 17
 	| Password Reset Controller
18 18
 	|--------------------------------------------------------------------------
@@ -182,8 +182,8 @@  discard block
 block discarded – undo
182 182
                 $passwordConfig = app('config')->get('xe.member.password');
183 183
                 $passwordLevel = array_get($passwordConfig['levels'], $passwordConfig['default']);
184 184
                 return redirect()->back()
185
-                                 ->withInput($request->only('email'))
186
-                                 ->with('alert', ['type' => 'danger', 'message' => $passwordLevel['description']]);
185
+                                    ->withInput($request->only('email'))
186
+                                    ->with('alert', ['type' => 'danger', 'message' => $passwordLevel['description']]);
187 187
         }
188 188
     }
189 189
 
Please login to merge, or discard this patch.
app/Http/Controllers/Controller.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,5 +9,5 @@
 block discarded – undo
9 9
 
10 10
 abstract class Controller extends BaseController
11 11
 {
12
-	use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
12
+    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
13 13
 }
Please login to merge, or discard this patch.
app/Http/Controllers/WelcomeController.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 class WelcomeController extends Controller {
4 4
 
5
-	/*
5
+    /*
6 6
 	|--------------------------------------------------------------------------
7 7
 	| Welcome Controller
8 8
 	|--------------------------------------------------------------------------
@@ -13,24 +13,24 @@  discard block
 block discarded – undo
13 13
 	|
14 14
 	*/
15 15
 
16
-	/**
17
-	 * Create a new controller instance.
18
-	 *
19
-	 * @return void
20
-	 */
21
-	public function __construct()
22
-	{
23
-		$this->middleware('guest');
24
-	}
16
+    /**
17
+     * Create a new controller instance.
18
+     *
19
+     * @return void
20
+     */
21
+    public function __construct()
22
+    {
23
+        $this->middleware('guest');
24
+    }
25 25
 
26
-	/**
27
-	 * Show the application welcome screen to the user.
28
-	 *
29
-	 * @return Response
30
-	 */
31
-	public function index()
32
-	{
33
-		return view('welcome');
34
-	}
26
+    /**
27
+     * Show the application welcome screen to the user.
28
+     *
29
+     * @return Response
30
+     */
31
+    public function index()
32
+    {
33
+        return view('welcome');
34
+    }
35 35
 
36 36
 }
Please login to merge, or discard this patch.
app/Http/Middleware/Authenticate.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -7,41 +7,41 @@
 block discarded – undo
7 7
 
8 8
 class Authenticate
9 9
 {
10
-	/**
11
-	 * The Guard implementation.
12
-	 *
13
-	 * @var Guard
14
-	 */
15
-	protected $auth;
10
+    /**
11
+     * The Guard implementation.
12
+     *
13
+     * @var Guard
14
+     */
15
+    protected $auth;
16 16
 
17
-	/**
18
-	 * Create a new filter instance.
19
-	 *
20
-	 * @param  Guard  $auth
21
-	 * @return void
22
-	 */
23
-	public function __construct(Guard $auth)
24
-	{
25
-		$this->auth = $auth;
26
-	}
17
+    /**
18
+     * Create a new filter instance.
19
+     *
20
+     * @param  Guard  $auth
21
+     * @return void
22
+     */
23
+    public function __construct(Guard $auth)
24
+    {
25
+        $this->auth = $auth;
26
+    }
27 27
 
28
-	/**
29
-	 * Handle an incoming request.
30
-	 *
31
-	 * @param  \Illuminate\Http\Request  $request
32
-	 * @param  \Closure  $next
33
-	 * @return mixed
34
-	 */
35
-	public function handle($request, Closure $next)
36
-	{
37
-		if ($this->auth->guest()) {
38
-			if ($request->ajax()) {
39
-				return response('Unauthorized.', 401);
40
-			} else {
41
-				return redirect()->guest('auth/login');
42
-			}
43
-		}
28
+    /**
29
+     * Handle an incoming request.
30
+     *
31
+     * @param  \Illuminate\Http\Request  $request
32
+     * @param  \Closure  $next
33
+     * @return mixed
34
+     */
35
+    public function handle($request, Closure $next)
36
+    {
37
+        if ($this->auth->guest()) {
38
+            if ($request->ajax()) {
39
+                return response('Unauthorized.', 401);
40
+            } else {
41
+                return redirect()->guest('auth/login');
42
+            }
43
+        }
44 44
 
45
-		return $next($request);
46
-	}
45
+        return $next($request);
46
+    }
47 47
 }
Please login to merge, or discard this patch.