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
Branch master (1a0c89)
by Pavel
05:00
created
src/ILogger.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 	/**
17 17
 	 * Log mail messages to eml file
18 18
 	 * @param  string $type
19
-	 * @param  string $text
20 19
 	 * @return void
21 20
 	 */
22 21
 	public function log($type, Nette\Mail\Message $mail);
Please login to merge, or discard this patch.
src/MailLogger.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 	/**
31 31
 	 * Log mail messages to eml file
32 32
 	 * @param  string $type
33
-	 * @param  string $text
34 33
 	 * @return void
35 34
 	 */
36 35
 	public function log($type, Nette\Mail\Message $mail)
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
 	{
58 58
 		preg_match('/^((([0-9]{4})-[0-9]{2})-[0-9]{2}).*/', $timestamp, $fragments);
59 59
 
60
-		$year_dir  = $this->log_directory  . '/' . $fragments[3];
61
-		$month_dir = $year_dir  . '/' . $fragments[2];
60
+		$year_dir  = $this->log_directory . '/' . $fragments[3];
61
+		$month_dir = $year_dir . '/' . $fragments[2];
62 62
 		$day_dir   = $month_dir . '/' . $fragments[1];
63 63
 		$file      = $day_dir . '/' . $type . static::LOG_EXTENSION;
64 64
 
Please login to merge, or discard this patch.
src/Mail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
 		/**
173 173
 		 * Convert class name to underscore and set latte file extension
174 174
 		 */
175
-		$this->underscore_name = lcfirst(preg_replace_callback('/(?<=.)([A-Z])/', function ($m) {
175
+		$this->underscore_name = lcfirst(preg_replace_callback('/(?<=.)([A-Z])/', function($m) {
176 176
 			return '_' . strtolower($m[1]);
177 177
 		}, $class_name));
178 178
 
Please login to merge, or discard this patch.