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 ( 45b6a3...f2282c )
by Samuel
02:39
created
src/Core/Factory/MailerFactory.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	public function __construct(array $sender, array $recipients, array $message){
22 22
 		$smtpConfigJson = file_get_contents("bin/configs/smtp-config.json");
23 23
 
24
-        $smtpConfig = json_decode($smtpConfigJson);
24
+		$smtpConfig = json_decode($smtpConfigJson);
25 25
 
26 26
 		$mail = new \PHPMailer;
27 27
 		$mail->SMTPDebug = $smtpConfig->debug;
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 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]>
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 class MailerFactory
19 19
 {
20 20
 	private $mail;
21
-	public function __construct(array $sender, array $recipients, array $message){
21
+	public function __construct(array $sender, array $recipients, array $message) {
22 22
 		$smtpConfigJson = file_get_contents("bin/configs/smtp-config.json");
23 23
 
24 24
         $smtpConfig = json_decode($smtpConfigJson);
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 		$this->mail = $mail;
50 50
 	}
51 51
 
52
-	public function send(){
53
-		if (!$this->mail->send()){
52
+	public function send() {
53
+		if (!$this->mail->send()) {
54 54
 			return $this->mail->ErrorInfo;
55 55
 		}
56 56
 
Please login to merge, or discard this patch.