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 ( fba2b6...a2738f )
by Pieter
02:02
created
src/Models/Activity.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -50,34 +50,34 @@
 block discarded – undo
50 50
 	{
51 51
 		// set the defaults from config
52 52
 		$defaults = config('activity-log.defaults');
53
-    if(!is_array($defaults)) {
53
+	if(!is_array($defaults)) {
54 54
 			$defaults = [];
55
-    }
55
+	}
56 56
 
57
-    if(is_object($data)) {
58
-      $data = (array) $data;
59
-    }
57
+	if(is_object($data)) {
58
+	  $data = (array) $data;
59
+	}
60 60
 
61
-    // set the user ID
61
+	// set the user ID
62 62
 		if(config('activity-log.auto_set_user_id') && !isset($data['userId'])) {
63
-      $user = call_user_func(config('activity-log.auth_method'));
63
+	  $user = call_user_func(config('activity-log.auth_method'));
64 64
 			$data['userId'] = isset($user->id) ? $user->id : null;
65 65
 		}
66 66
 
67 67
 		// set IP address
68
-    if(!isset($data['ipAddress'])) {
68
+	if(!isset($data['ipAddress'])) {
69 69
 			$data['ipAddress'] = Request::getClientIp();
70
-    }
70
+	}
71 71
 
72 72
 		// set user agent
73
-    if (!isset($data['userAgent'])) {
73
+	if (!isset($data['userAgent'])) {
74 74
 			$data['userAgent'] = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : 'No User Agent';
75
-    }
75
+	}
76 76
 
77 77
 		// set additional data and encode it as JSON if it is an array or an object
78
-    if(isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) {
78
+	if(isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) {
79 79
 			$data['data'] = json_encode($data['data']);
80
-    }
80
+	}
81 81
 
82 82
 		// format array keys to snake case for insertion into database
83 83
 		$dataFormatted = [];
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,22 +50,22 @@  discard block
 block discarded – undo
50 50
 	{
51 51
 		// set the defaults from config
52 52
 		$defaults = config('activity-log.defaults');
53
-    if(!is_array($defaults)) {
53
+    if (!is_array($defaults)) {
54 54
 			$defaults = [];
55 55
     }
56 56
 
57
-    if(is_object($data)) {
57
+    if (is_object($data)) {
58 58
       $data = (array) $data;
59 59
     }
60 60
 
61 61
     // set the user ID
62
-		if(config('activity-log.auto_set_user_id') && !isset($data['userId'])) {
62
+		if (config('activity-log.auto_set_user_id') && !isset($data['userId'])) {
63 63
       $user = call_user_func(config('activity-log.auth_method'));
64 64
 			$data['userId'] = isset($user->id) ? $user->id : null;
65 65
 		}
66 66
 
67 67
 		// set IP address
68
-    if(!isset($data['ipAddress'])) {
68
+    if (!isset($data['ipAddress'])) {
69 69
 			$data['ipAddress'] = Request::getClientIp();
70 70
     }
71 71
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
 		// set additional data and encode it as JSON if it is an array or an object
78
-    if(isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) {
78
+    if (isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) {
79 79
 			$data['data'] = json_encode($data['data']);
80 80
     }
81 81
 
Please login to merge, or discard this patch.
src/ActivityLogServiceProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@
 block discarded – undo
23 23
 
24 24
 		$this->publishes([
25 25
 			__DIR__ . '/migrations' => database_path('migrations'),
26
-    ], 'migrations');
26
+	], 'migrations');
27 27
 
28
-    $this->mergeConfigFrom(__DIR__ . '/config/activity-log.php', 'activity-log');
28
+	$this->mergeConfigFrom(__DIR__ . '/config/activity-log.php', 'activity-log');
29 29
 	}
30 30
 
31 31
 	/**
Please login to merge, or discard this patch.