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 ( 61bf69...3a1917 )
by Nicholas
03:32
created
lib/UCD/Infrastructure/Repository/CharacterRepository/FileRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-     * @return bool
205
+     * @return boolean|null
206 206
      */
207 207
     private function writeAggregations()
208 208
     {
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      * @param Property $property
268 268
      * @param string $key
269 269
      * @param Exception $notFoundException
270
-     * @return Codepoint\Range[]
270
+     * @return Codepoint\Range\Collection
271 271
      * @throws Exception
272 272
      */
273 273
     private function resolveCodepointsByProperty(Property $property, $key, Exception $notFoundException)
Please login to merge, or discard this patch.
UCD/Unicode/Character/Repository/Capability/PropertySearchByIteration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function getCodepointsByBlock(Block $block)
20 20
     {
21
-        $comparator = function (CodepointAssigned $item) use ($block) {
21
+        $comparator = function(CodepointAssigned $item) use ($block) {
22 22
             return $item->getGeneralProperties()
23 23
                 ->getBlock()
24 24
                 ->equals($block);
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function getCodepointsByCategory(GeneralCategory $category)
37 37
     {
38
-        $comparator = function (CodepointAssigned $item) use ($category) {
38
+        $comparator = function(CodepointAssigned $item) use ($category) {
39 39
             return $item->getGeneralProperties()
40 40
                 ->getGeneralCategory()
41 41
                 ->equals($category);
Please login to merge, or discard this patch.