Completed
Pull Request — master (#3)
by Kris
01:28
created
src/Software/Fail2BanLogParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $this->addPath("/var/log/");
48 48
         $this->addFile("fail2ban.log");
49 49
 
50
-     // '%d' => '(?P<date>[\d \-,:]+)',
50
+        // '%d' => '(?P<date>[\d \-,:]+)',
51 51
         $this->addPattern('%t', '(?P<time>[\d \-:]+)(,\d+)');
52 52
         $this->addPattern('%s', '(?P<service>[\w\d\. :]+(|\s+))');
53 53
 
Please login to merge, or discard this patch.
src/Software/ApacheErrorLogParser.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -173,14 +173,14 @@
 block discarded – undo
173 173
         parent::__construct($format, $factory);
174 174
     } 
175 175
 
176
-     /**
177
-     * Sets the log format  
178
-     * 
179
-     * @access public
180
-     * @param string    $format
181
-     * 
182
-     * @return void
183
-     */
176
+        /**
177
+         * Sets the log format  
178
+         * 
179
+         * @access public
180
+         * @param string    $format
181
+         * 
182
+         * @return void
183
+         */
184 184
     public function setFormat(string $format): void
185 185
     {
186 186
             parent::setFormat($format);
Please login to merge, or discard this patch.