Completed
Pull Request — master (#6)
by Jefersson
02:10
created
src/Validator/Regex.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
             $matchable = str_replace($sentence, $match, $this->pattern);
52 52
 
53
-            if (! preg_match('{' . $matchable . '}', $docheader, $m)) {
53
+            if (!preg_match('{' . $matchable . '}', $docheader, $m)) {
54 54
                 return false;
55 55
             }
56 56
         }
Please login to merge, or discard this patch.
src/Command/Checker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         /* @var $file \Symfony\Component\Finder\SplFileInfo */
60 60
         foreach ($finder as $directory) {
61 61
             foreach ($directory as $file) {
62
-                if (! $validator->__invoke($file->getContents())) {
62
+                if (!$validator->__invoke($file->getContents())) {
63 63
                     defined('FAILED') ?: define('FAILED', 1);
64 64
                     $output->writeln('-> ' . $file->getRelativePathname());
65 65
                 }
Please login to merge, or discard this patch.
src/Filter/Filter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     public function applyFilters()
47 47
     {
48 48
         array_map(
49
-            function ($filterName) {
49
+            function($filterName) {
50 50
                 $this->docheader = (new $filterName)->__invoke($this->docheader);
51 51
             },
52 52
             $this->defaultFilters
Please login to merge, or discard this patch.