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 ( 6f8b1f...142a48 )
by James
25:51 queued 11:45
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/BudgetServiceProvider.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
             BudgetRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var BudgetRepositoryInterface $repository */
50 50
                 $repository = app(BudgetRepository::class);
51 51
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/CategoryServiceProvider.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
             CategoryRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var CategoryRepository $repository */
50 50
                 $repository = app(CategoryRepository::class);
51 51
                 if ($app->auth->check()) {
Please login to merge, or discard this patch.
app/Providers/AccountServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $this->app->bind(
58 58
             AccountRepositoryInterface::class,
59
-            function (Application $app) {
59
+            function(Application $app) {
60 60
                 /** @var AccountRepositoryInterface $repository */
61 61
                 $repository = app(AccountRepository::class);
62 62
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     {
77 77
         $this->app->bind(
78 78
             AccountTaskerInterface::class,
79
-            function (Application $app) {
79
+            function(Application $app) {
80 80
                 /** @var AccountTaskerInterface $tasker */
81 81
                 $tasker = app(AccountTasker::class);
82 82
 
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/TagServiceProvider.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
             TagRepositoryInterface::class,
48
-            function (Application $app) {
48
+            function(Application $app) {
49 49
                 /** @var TagRepository $repository */
50 50
                 $repository = app(TagRepository::class);
51 51
 
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.