Completed
Push — master ( 81da4d...2c2acb )
by Jefersson
29:41 queued 04:43
created
src/Validator/RegExp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             $matches
52 52
         );
53 53
 
54
-        if (! $didMatch) {
54
+        if (!$didMatch) {
55 55
             return false;
56 56
         }
57 57
 
Please login to merge, or discard this patch.
src/Helper/DocheaderFileResolution.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             $pathOrFile .= DIRECTORY_SEPARATOR . '.docheader';
39 39
         }
40 40
 
41
-        if (! is_file($pathOrFile)) {
41
+        if (!is_file($pathOrFile)) {
42 42
             throw DocHeaderFileConfiguration::notFound($pathOrFile);
43 43
         }
44 44
 
Please login to merge, or discard this patch.
src/Helper/IOResourcePathResolution.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
              *
86 86
              * @return Finder
87 87
              */
88
-            function ($directoryOrFile) {
88
+            function($directoryOrFile) {
89 89
                 $finder = Finder::create()
90 90
                     ->files()
91 91
                     ->ignoreDotFiles(true)
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
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
             }
98 98
         }
99 99
 
100
-        if (! $success) {
100
+        if (!$success) {
101 101
             $output->writeln('');
102 102
             $output->writeln('<bg=red;fg=white>    Something goes wrong!     </>');
103 103
 
Please login to merge, or discard this patch.
src/Filter/FilterAggregator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
     public function apply() : string
41 41
     {
42
-        $applyFilters = static function (string $docheader, string $filter) : string {
42
+        $applyFilters = static function(string $docheader, string $filter) : string {
43 43
             /** @psalm-var class-string<Filter> $filter */
44 44
             return (string) (new $filter())->__invoke($docheader);
45 45
         };
Please login to merge, or discard this patch.