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.
Passed
Push — master ( d550a6...996863 )
by James
24:09 queued 11:56
created
app/Providers/RuleGroupServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     {
47 47
         $this->app->bind(
48 48
             RuleGroupRepositoryInterface::class,
49
-            function (Application $app) {
49
+            function(Application $app) {
50 50
                 /** @var RuleGroupRepository $repository */
51 51
                 $repository = app(RuleGroupRepository::class);
52 52
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/CurrencyServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $this->app->bind(
47 47
             CurrencyRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var CurrencyRepository $repository */
50 50
                 $repository = app(CurrencyRepository::class);
51 51
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/SearchServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $this->app->bind(
47 47
             SearchInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var Search $search */
50 50
                 $search = app(Search::class);
51 51
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/PiggyBankServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     {
48 48
         $this->app->bind(
49 49
             PiggyBankRepositoryInterface::class,
50
-            function (Application $app) {
50
+            function(Application $app) {
51 51
                 /** @var PiggyBankRepository $repository */
52 52
                 $repository = app(PiggyBankRepository::class);
53 53
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/AttachmentServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $this->app->bind(
47 47
             AttachmentRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var AttachmentRepositoryInterface $repository */
50 50
                 $repository = app(AttachmentRepository::class);
51 51
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/RuleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $this->app->bind(
47 47
             RuleRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var RuleRepository $repository */
50 50
                 $repository = app(RuleRepository::class);
51 51
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/BillServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $this->app->bind(
47 47
             BillRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var BillRepositoryInterface $repository */
50 50
                 $repository = app(BillRepository::class);
51 51
 
Please login to merge, or discard this patch.
app/Jobs/MailError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
                 Mail::send(
83 83
                     ['emails.error-html', 'emails.error-text'],
84 84
                     $args,
85
-                    function (Message $message) use ($email) {
85
+                    function(Message $message) use ($email) {
86 86
                         if ('[email protected]' !== $email) {
87 87
                             $message->to($email, $email)->subject('Caught an error in Firely III');
88 88
                         }
Please login to merge, or discard this patch.
app/TransactionRules/Actions/AppendNotes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         }
62 62
         $notes = $dbNote->text;
63 63
         Log::debug(sprintf('RuleAction AppendNotes appended "%s" to "%s".', $this->action->action_value, $notes));
64
-        $notes        .= $this->action->action_value;
64
+        $notes .= $this->action->action_value;
65 65
         $dbNote->text = $notes;
66 66
         $dbNote->save();
67 67
         $journal->save();
Please login to merge, or discard this patch.