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
Branch develop (a1d3bb)
by Dane
11:05
created
app/Models/ServiceOptions.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@
 block discarded – undo
47 47
      *
48 48
      * @var array
49 49
      */
50
-     protected $casts = [
51
-         'parent_service' => 'integer',
52
-     ];
50
+        protected $casts = [
51
+            'parent_service' => 'integer',
52
+        ];
53 53
 
54 54
 }
Please login to merge, or discard this patch.
app/Models/Database.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,9 +54,9 @@
 block discarded – undo
54 54
      *
55 55
      * @var array
56 56
      */
57
-     protected $casts = [
58
-         'server' => 'integer',
59
-         'db_server' => 'integer',
60
-     ];
57
+        protected $casts = [
58
+            'server' => 'integer',
59
+            'db_server' => 'integer',
60
+        ];
61 61
 
62 62
 }
Please login to merge, or discard this patch.
app/Models/APILog.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@
 block discarded – undo
54 54
      *
55 55
      * @var array
56 56
      */
57
-     protected $casts = [
58
-         'authorized' => 'boolean'
59
-     ];
57
+        protected $casts = [
58
+            'authorized' => 'boolean'
59
+        ];
60 60
 
61 61
 }
Please login to merge, or discard this patch.
app/Models/Session.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@
 block discarded – undo
40 40
      *
41 41
      * @var array
42 42
      */
43
-     protected $casts = [
44
-         'id' => 'string',
45
-         'user_id' => 'integer',
46
-     ];
43
+        protected $casts = [
44
+            'id' => 'string',
45
+            'user_id' => 'integer',
46
+        ];
47 47
 
48 48
 }
Please login to merge, or discard this patch.
app/Models/Node.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -48,14 +48,14 @@
 block discarded – undo
48 48
      *
49 49
      * @var array
50 50
      */
51
-     protected $casts = [
52
-         'public' => 'integer',
53
-         'location' => 'integer',
54
-         'memory' => 'integer',
55
-         'disk' => 'integer',
56
-         'daemonListen' => 'integer',
57
-         'daemonSFTP' => 'integer',
58
-     ];
51
+        protected $casts = [
52
+            'public' => 'integer',
53
+            'location' => 'integer',
54
+            'memory' => 'integer',
55
+            'disk' => 'integer',
56
+            'daemonListen' => 'integer',
57
+            'daemonSFTP' => 'integer',
58
+        ];
59 59
 
60 60
     /**
61 61
      * Fields that are not mass assignable.
Please login to merge, or discard this patch.
app/Models/Task.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,17 +47,17 @@
 block discarded – undo
47 47
      *
48 48
      * @var array
49 49
      */
50
-     protected $casts = [
51
-         'id' => 'integer',
52
-         'server' => 'integer',
53
-         'queued' => 'integer',
54
-     ];
50
+        protected $casts = [
51
+            'id' => 'integer',
52
+            'server' => 'integer',
53
+            'queued' => 'integer',
54
+        ];
55 55
 
56
-     /**
57
-     * The attributes that should be mutated to dates.
58
-     *
59
-     * @var array
60
-     */
56
+        /**
57
+         * The attributes that should be mutated to dates.
58
+         *
59
+         * @var array
60
+         */
61 61
     protected $dates = ['last_run', 'next_run', 'created_at', 'updated_at'];
62 62
 
63 63
 }
Please login to merge, or discard this patch.
app/Services/VersionService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function __construct()
38 38
     {
39
-        self::$versions = Cache::remember('versions', env('VERSION_CACHE_TIME', 60), function () {
39
+        self::$versions = Cache::remember('versions', env('VERSION_CACHE_TIME', 60), function() {
40 40
             $client = new Client();
41 41
 
42 42
             try {
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         /*
20 20
          * Authenticate the user's personal channel...
21 21
          */
22
-        Broadcast::channel('App.User.*', function ($user, $userId) {
22
+        Broadcast::channel('App.User.*', function($user, $userId) {
23 23
             return (int) $user->id === (int) $userId;
24 24
         });
25 25
     }
Please login to merge, or discard this patch.