@@ -37,7 +37,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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() |
@@ -60,7 +60,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -61,7 +61,7 @@ |
||
61 | 61 | 'value' => $this->value, |
62 | 62 | 'type' => $this->type, |
63 | 63 | 'comment' => $this->comment |
64 | - ], function ($v) { |
|
64 | + ], function($v) { |
|
65 | 65 | return null !== $v; |
66 | 66 | }); |
67 | 67 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | 'type' => $this->getType(), |
38 | 38 | 'comment' => $this->getComment(), |
39 | 39 | 'containerId' => $this->containerId |
40 | - ], function ($v) { |
|
40 | + ], function($v) { |
|
41 | 41 | return null !== $v; |
42 | 42 | }); |
43 | 43 | } |
@@ -27,7 +27,7 @@ |
||
27 | 27 | 'type' => $this->getType(), |
28 | 28 | 'source' => $this->source, |
29 | 29 | 'comment' => $this->comment, |
30 | - ], function ($v) { |
|
30 | + ], function($v) { |
|
31 | 31 | return null !== $v; |
32 | 32 | }); |
33 | 33 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function __construct() |
63 | 63 | { |
64 | - $this->validatorSchema = \GuzzleHttp\json_decode((string)file_get_contents(__DIR__ . '/ServiceJsonSchema.json'), false); |
|
64 | + $this->validatorSchema = \GuzzleHttp\json_decode((string) file_get_contents(__DIR__ . '/ServiceJsonSchema.json'), false); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -130,13 +130,12 @@ discard block |
||
130 | 130 | */ |
131 | 131 | public function jsonSerialize(): array |
132 | 132 | { |
133 | - $labelMap = function (CommentedItem $commentedItem): array { |
|
133 | + $labelMap = function(CommentedItem $commentedItem): array { |
|
134 | 134 | return null === $commentedItem->getComment() ? |
135 | - ['value' => $commentedItem->getItem()] : |
|
136 | - ['value' => $commentedItem->getItem(), 'comment' => $commentedItem->getComment()]; |
|
135 | + ['value' => $commentedItem->getItem()] : ['value' => $commentedItem->getItem(), 'comment' => $commentedItem->getComment()]; |
|
137 | 136 | }; |
138 | 137 | |
139 | - $jsonSerializeMap = function (\JsonSerializable $obj): array { |
|
138 | + $jsonSerializeMap = function(\JsonSerializable $obj): array { |
|
140 | 139 | return $obj->jsonSerialize(); |
141 | 140 | }; |
142 | 141 | |
@@ -171,13 +170,13 @@ discard block |
||
171 | 170 | 'requests' => array_filter([ |
172 | 171 | 'memory' => $this->requestMemory, |
173 | 172 | 'cpu' => $this->requestCpu, |
174 | - ], function ($v) { |
|
173 | + ], function($v) { |
|
175 | 174 | return null !== $v; |
176 | 175 | }), |
177 | 176 | 'limits' => array_filter([ |
178 | 177 | 'memory' => $this->limitMemory, |
179 | 178 | 'cpu' => $this->limitCpu, |
180 | - ], function ($v) { |
|
179 | + ], function($v) { |
|
181 | 180 | return null !== $v; |
182 | 181 | }), |
183 | 182 | ]); |
@@ -416,7 +415,7 @@ discard block |
||
416 | 415 | 'source' => $source, |
417 | 416 | 'target' => $target, |
418 | 417 | 'comment' => $comment, |
419 | - ], function ($v) { |
|
418 | + ], function($v) { |
|
420 | 419 | return null !== $v; |
421 | 420 | }); |
422 | 421 | } |
@@ -590,7 +589,7 @@ discard block |
||
590 | 589 | |
591 | 590 | private function removeVolumesByType(string $type): void |
592 | 591 | { |
593 | - $filterFunction = function (Volume $vol) use ($type) { |
|
592 | + $filterFunction = function(Volume $vol) use ($type) { |
|
594 | 593 | return $vol->getType() !== $type; |
595 | 594 | }; |
596 | 595 | $this->volumes = array_values(array_filter($this->volumes, $filterFunction)); |
@@ -613,7 +612,7 @@ discard block |
||
613 | 612 | |
614 | 613 | public function removeVolumesBySource(string $source): void |
615 | 614 | { |
616 | - $filterFunction = function (Volume $vol) use ($source) { |
|
615 | + $filterFunction = function(Volume $vol) use ($source) { |
|
617 | 616 | return $vol->getSource() !== $source; |
618 | 617 | }; |
619 | 618 | $this->volumes = array_values(array_filter($this->volumes, $filterFunction)); |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 'readOnly' => $this->readOnly, |
58 | 58 | 'comment' => $this->comment, |
59 | 59 | 'requestStorage' => $this->requestStorage, |
60 | - ], function ($v) { |
|
60 | + ], function($v) { |
|
61 | 61 | return null !== $v; |
62 | 62 | }); |
63 | 63 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | 'target' => $this->target, |
50 | 50 | 'readOnly' => $this->readOnly, |
51 | 51 | 'comment' => $this->comment |
52 | - ], function ($v) { |
|
52 | + ], function($v) { |
|
53 | 53 | return null !== $v; |
54 | 54 | }); |
55 | 55 | } |