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 ( 6c2a86...45b6a3 )
by Samuel
03:03
created
src/Core/Factory/MailerFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * @license MIT
4 4
  * @author Samuel Adeshina <[email protected]>
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  */
18 18
 class MailerFactory
19 19
 {
20
-	public function __construct(array $sender, array $recipients, array $message){
20
+	public function __construct(array $sender, array $recipients, array $message) {
21 21
 		$mail = new PHPMailer;
22 22
 		$mail->From = $sender["address"];
23 23
 		$mail->FromName = $sender["name"];
Please login to merge, or discard this patch.