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 ( 07e81f...518277 )
by Baptiste
02:20
created
StringPrimitive.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
      */
532 532
     public function append(string $string): self
533 533
     {
534
-        return new self((string) $this . $string);
534
+        return new self((string) $this.$string);
535 535
     }
536 536
 
537 537
     /**
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
      */
544 544
     public function prepend(string $string): self
545 545
     {
546
-        return new self($string . (string) $this);
546
+        return new self($string.(string) $this);
547 547
     }
548 548
 
549 549
     /**
Please login to merge, or discard this patch.