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 ( b41147...38ae8d )
by Sam
03:29 queued 02:02
created
src/Acf.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
     public static function field($name, $id = null)
58 58
     {
59 59
         return self::getInstance()
60
-                     ->getBuilder(FieldBehavior::class)
61
-                     ->field($name)
62
-                     ->id($id);
60
+                        ->getBuilder(FieldBehavior::class)
61
+                        ->field($name)
62
+                        ->id($id);
63 63
     }
64 64
 
65 65
     /**
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
     public static function subField($name)
72 72
     {
73 73
         return self::getInstance()
74
-                     ->getBuilder(SubFieldBehavior::class)
75
-                     ->field($name);
74
+                        ->getBuilder(SubFieldBehavior::class)
75
+                        ->field($name);
76 76
     }
77 77
 
78 78
     /**
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
     public static function option($name)
85 85
     {
86 86
         return self::getInstance()
87
-                     ->getBuilder(FieldBehavior::class)
88
-                     ->field($name)
89
-                     ->id('option');
87
+                        ->getBuilder(FieldBehavior::class)
88
+                        ->field($name)
89
+                        ->id('option');
90 90
     }
91 91
 
92 92
     /**
Please login to merge, or discard this patch.