Passed
Pull Request — master (#80)
by Jindun
02:18
created
src/Service/Volume/BindVolume.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             'target' => $this->target,
67 67
             'readOnly' => $this->readOnly,
68 68
             'comment' => $this->comment,
69
-        ], function ($v) {
69
+        ], function($v) {
70 70
             return null !== $v;
71 71
         });
72 72
     }
Please login to merge, or discard this patch.
src/Service/Volume/NamedVolume.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             'target' => $this->target,
67 67
             'readOnly' => $this->readOnly,
68 68
             'comment' => $this->comment,
69
-        ], function ($v) {
69
+        ], function($v) {
70 70
             return null !== $v;
71 71
         });
72 72
     }
Please login to merge, or discard this patch.
tests/Yaml/DumperTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         $this->parser = new Parser();
39 39
         $this->dumper = new Dumper();
40
-        $this->path = __DIR__.'/Fixtures';
40
+        $this->path = __DIR__ . '/Fixtures';
41 41
     }
42 42
 
43 43
     protected function tearDown()
@@ -75,9 +75,9 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function testSpecifications()
77 77
     {
78
-        $files = $this->parser->parse(file_get_contents($this->path.'/index.yml'));
78
+        $files = $this->parser->parse(file_get_contents($this->path . '/index.yml'));
79 79
         foreach ($files as $file) {
80
-            $yamls = file_get_contents($this->path.'/'.$file.'.yml');
80
+            $yamls = file_get_contents($this->path . '/' . $file . '.yml');
81 81
 
82 82
             // split YAMLs documents
83 83
             foreach (preg_split('/^---( %YAML\:1\.0)?/m', $yamls) as $yaml) {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 } elseif (isset($test['todo']) && $test['todo']) {
92 92
                     // TODO
93 93
                 } else {
94
-                    eval('$expected = '.trim($test['php']).';');
94
+                    eval('$expected = ' . trim($test['php']) . ';');
95 95
                     $this->assertSame($expected, $this->parser->parse($this->dumper->dump($expected, 10)), $test['test']);
96 96
                 }
97 97
             }
@@ -230,8 +230,8 @@  discard block
 block discarded – undo
230 230
 
231 231
     public function testBinaryDataIsDumpedBase64Encoded()
232 232
     {
233
-        $binaryData = file_get_contents(__DIR__.'/Fixtures/arrow.gif');
234
-        $expected = '{ data: !!binary '.base64_encode($binaryData).' }';
233
+        $binaryData = file_get_contents(__DIR__ . '/Fixtures/arrow.gif');
234
+        $expected = '{ data: !!binary ' . base64_encode($binaryData) . ' }';
235 235
 
236 236
         $this->assertSame($expected, $this->dumper->dump(array('data' => $binaryData)));
237 237
     }
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
             ),
382 382
         );
383 383
 
384
-        $this->assertSame(file_get_contents(__DIR__.'/Fixtures/multiple_lines_as_literal_block.yml'), $this->dumper->dump($data, 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK));
384
+        $this->assertSame(file_get_contents(__DIR__ . '/Fixtures/multiple_lines_as_literal_block.yml'), $this->dumper->dump($data, 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK));
385 385
     }
386 386
 
387 387
     public function testDumpMultiLineStringAsScalarBlockWhenFirstLineHasLeadingSpace()
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
             ),
393 393
         );
394 394
 
395
-        $this->assertSame(file_get_contents(__DIR__.'/Fixtures/multiple_lines_as_literal_block_leading_space_in_first_line.yml'), $this->dumper->dump($data, 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK));
395
+        $this->assertSame(file_get_contents(__DIR__ . '/Fixtures/multiple_lines_as_literal_block_leading_space_in_first_line.yml'), $this->dumper->dump($data, 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK));
396 396
     }
397 397
 
398 398
     public function testCarriageReturnIsMaintainedWhenDumpingAsMultiLineLiteralBlock()
Please login to merge, or discard this patch.
src/Yaml/Dumper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         if ($input instanceof CommentedItem) {
62 62
             //$comment = $input->getComment();
63
-            $output = '# '.$input->getComment()."\n";
63
+            $output = '# ' . $input->getComment() . "\n";
64 64
             $input = $input->getItem();
65 65
         } else {
66 66
             //$comment = null;
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         }
77 77
 
78 78
         if ($inline <= 0 || (!\is_array($input) && $dumpObjectAsInlineMap) || empty($input)) {
79
-            $output .= $prefix.Inline::dump($input, $flags);
79
+            $output .= $prefix . Inline::dump($input, $flags);
80 80
         } else {
81 81
             $dumpAsMap = Inline::isHash($input);
82 82
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
                     // If the first line starts with a space character, the spec requires a blockIndicationIndicator
93 93
                     // http://www.yaml.org/spec/1.2/spec.html#id2793979
94 94
                     $blockIndentationIndicator = (' ' === substr($value, 0, 1)) ? (string) $this->indentation : '';
95
-                    $output .= sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '', $blockIndentationIndicator);
95
+                    $output .= sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags) . ':' : '-', '', $blockIndentationIndicator);
96 96
 
97 97
                     $pregSplit = preg_split('/\n|\r\n/', $value);
98 98
                     if ($pregSplit === false) {
@@ -119,10 +119,10 @@  discard block
 block discarded – undo
119 119
                 $output .= sprintf(
120 120
                     '%s%s%s%s',
121 121
                     $prefix,
122
-                    $dumpAsMap ? Inline::dump($key, $flags).':' : '-',
122
+                    $dumpAsMap ? Inline::dump($key, $flags) . ':' : '-',
123 123
                     $willBeInlined ? ' ' : "\n",
124 124
                     $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
125
-                ).($willBeInlined ? "\n" : '');
125
+                ) . ($willBeInlined ? "\n" : '');
126 126
             }
127 127
         }
128 128
 
Please login to merge, or discard this patch.
src/Service/Service.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     /** @var null|bool */
39 39
     private $needVirtualHost;
40 40
     /** @var array<int, array<string, string|int>> */
41
-    private $virtualHosts= [];
41
+    private $virtualHosts = [];
42 42
     /** @var null|bool */
43 43
     private $needBuild;
44 44
     /** @var \stdClass */
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function jsonSerialize(): array
118 118
     {
119
-        $jsonSerializeMap = function (\JsonSerializable $obj): array {
119
+        $jsonSerializeMap = function(\JsonSerializable $obj): array {
120 120
             return $obj->jsonSerialize();
121 121
         };
122 122
 
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
             'source' => $source,
395 395
             'target' => $target,
396 396
             'comment' => $comment,
397
-        ], function ($v) {
397
+        ], function($v) {
398 398
             return null !== $v;
399 399
         });
400 400
     }
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
         $this->labels[$key] = array_filter([
405 405
             'value' => $value,
406 406
             'comment' => $comment
407
-        ], function ($v) {
407
+        ], function($v) {
408 408
             return null !== $v;
409 409
         });
410 410
     }
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
 
551 551
     private function removeVolumesByType(string $type): void
552 552
     {
553
-        $filterFunction = function (Volume $vol) use ($type) {
553
+        $filterFunction = function(Volume $vol) use ($type) {
554 554
             return $vol->getType() !== $type;
555 555
         };
556 556
         $this->volumes = array_values(array_filter($this->volumes, $filterFunction));
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 
574 574
     public function removeVolumesBySource(string $source): void
575 575
     {
576
-        $filterFunction = function (Volume $vol) use ($source) {
576
+        $filterFunction = function(Volume $vol) use ($source) {
577 577
             return $vol->getSource() !== $source;
578 578
         };
579 579
         $this->volumes = array_values(array_filter($this->volumes, $filterFunction));
Please login to merge, or discard this patch.