@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | |
75 | 75 | public function setUp() : void |
76 | 76 | { |
77 | - $this->sourceRepository = CheckedOutRepository::fromPath(realpath(__DIR__ . '/../../../')); |
|
77 | + $this->sourceRepository = CheckedOutRepository::fromPath(realpath(__DIR__.'/../../../')); |
|
78 | 78 | chdir((string) $this->sourceRepository); |
79 | 79 | |
80 | 80 | $this->input = $this->createMock(InputInterface::class); |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | |
262 | 262 | $this->output->expects(self::any()) |
263 | 263 | ->method('writeln') |
264 | - ->willReturnCallback(function (string $output) use ($changeToExpect) : void { |
|
264 | + ->willReturnCallback(function(string $output) use ($changeToExpect) : void { |
|
265 | 265 | self::assertContains($changeToExpect, $output); |
266 | 266 | }); |
267 | 267 | } |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | |
309 | 309 | $this->getVersions->expects(self::once()) |
310 | 310 | ->method('fromRepository') |
311 | - ->with(self::callback(function (CheckedOutRepository $checkedOutRepository) : bool { |
|
311 | + ->with(self::callback(function(CheckedOutRepository $checkedOutRepository) : bool { |
|
312 | 312 | self::assertEquals($this->sourceRepository, $checkedOutRepository); |
313 | 313 | return true; |
314 | 314 | })) |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |
@@ -48,7 +48,7 @@ |
||
48 | 48 | ) : Changes { |
49 | 49 | $changelog = Changes::new(); |
50 | 50 | |
51 | - $definedApiClassNames = array_map(function (ReflectionClass $class) : string { |
|
51 | + $definedApiClassNames = array_map(function(ReflectionClass $class) : string { |
|
52 | 52 | return $class->getName(); |
53 | 53 | }, $definedSymbols->getAllClasses()); |
54 | 54 |