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 — develop ( 1abe18...c7ce88 )
by Tom Van
27s
created
src/Collection/AbstractCollection.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
     /**
34 34
      * Collection constructor
35 35
      *
36
-     * @param array $data
37 36
      */
38 37
     public function __construct(array $elements = array())
39 38
     {
Please login to merge, or discard this patch.
src/Data/ValueObject/Exif/Filesize.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function getMegaBytes()
88 88
     {
89
-        return ($this->getKiloBytes() / 1024 );
89
+        return ($this->getKiloBytes() / 1024);
90 90
     }
91 91
 
92 92
     /**
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function getGigaBytes()
98 98
     {
99
-        return ($this->getMegaBytes() / 1024 );
99
+        return ($this->getMegaBytes() / 1024);
100 100
     }
101 101
 
102 102
     /**
Please login to merge, or discard this patch.