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
Pull Request — master (#12)
by
unknown
09:20
created
src/Facade/Responses/GetCalendarResponse.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @return string
24 24
      */
25
-    public function getDisplayName(){
25
+    public function getDisplayName() {
26 26
         return isset($this->found_props['displayname']) ? $this->found_props['displayname'] : null;
27 27
     }
28 28
 
29
-    public function getResourceType(){
29
+    public function getResourceType() {
30 30
         return isset($this->found_props['resourcetype']) ? $this->found_props['resourcetype'] : null;
31 31
     }
32 32
 
@@ -34,21 +34,21 @@  discard block
 block discarded – undo
34 34
      * @see https://tools.ietf.org/html/rfc6578
35 35
      * @return string
36 36
      */
37
-    public function getSyncToken(){
37
+    public function getSyncToken() {
38 38
         return isset($this->found_props['sync-token']) ? $this->found_props['sync-token'] : null;
39 39
     }
40 40
 
41 41
     /**
42 42
      * @return string
43 43
      */
44
-    public function getETag(){
44
+    public function getETag() {
45 45
         return isset($this->found_props['getetag']) ? $this->found_props['getetag'] : null;
46 46
     }
47 47
 
48 48
     /**
49 49
      * @return string
50 50
      */
51
-    public function getCTag(){
51
+    public function getCTag() {
52 52
         return isset($this->found_props['getctag']) ? $this->found_props['getctag'] : null;
53 53
     }
54 54
 
Please login to merge, or discard this patch.