@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | $excluded = $definition['archive']['exclude'] ?? []; |
| 68 | 68 | |
| 69 | 69 | $excluded = array_map( |
| 70 | - function (string $exclude): string { |
|
| 70 | + function(string $exclude): string { |
|
| 71 | 71 | return substr($exclude, 0, 1) !== '/' |
| 72 | 72 | ? '/' . $exclude |
| 73 | 73 | : $exclude; |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | $files = array_merge( |
| 79 | 79 | $this->defaults, |
| 80 | 80 | array_map( |
| 81 | - function (FileMappingInterface $mapping): string { |
|
| 81 | + function(FileMappingInterface $mapping): string { |
|
| 82 | 82 | return '/' . $mapping->getRelativeDestination(); |
| 83 | 83 | }, |
| 84 | 84 | iterator_to_array( |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | private $typeResolver; |
| 13 | 13 | |
| 14 | 14 | /** @var string */ |
| 15 | - private $template = __DIR__ . '/../templates/config/%s.json'; |
|
| 15 | + private $template = __DIR__ . '/../templates/config/%s.json'; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * Constructor. |