@@ -62,7 +62,7 @@ |
||
62 | 62 | |
63 | 63 | $setReferenceArgs = $getReferenceArgs = []; |
64 | 64 | foreach ($data as $index => $item) { |
65 | - $itemName = $collectionName . '.' . $index; |
|
65 | + $itemName = $collectionName.'.'.$index; |
|
66 | 66 | $setReferenceArgs[] = [$itemName, $item]; |
67 | 67 | $getReferenceArgs[] = [$itemName]; |
68 | 68 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | { |
58 | 58 | $output->writeln('Executing data fixtures...'); |
59 | 59 | |
60 | - $purgeMode = (int)$input->getOption('purge-with-truncate'); |
|
60 | + $purgeMode = (int) $input->getOption('purge-with-truncate'); |
|
61 | 61 | |
62 | 62 | if (null !== $this->purger && $purgeMode) { |
63 | 63 | $output->writeln(sprintf('Purging existing database data')); |
@@ -59,6 +59,6 @@ |
||
59 | 59 | */ |
60 | 60 | public function getConfig(): array |
61 | 61 | { |
62 | - return require __DIR__ . '/../config/module.config.php'; |
|
62 | + return require __DIR__.'/../config/module.config.php'; |
|
63 | 63 | } |
64 | 64 | } |
@@ -70,7 +70,7 @@ |
||
70 | 70 | public function setCollectionReference(string $name, iterable $collection): void |
71 | 71 | { |
72 | 72 | foreach ($collection as $index => $item) { |
73 | - $itemName = $name . '.' . $index; |
|
73 | + $itemName = $name.'.'.$index; |
|
74 | 74 | $this->setReference($itemName, $item); |
75 | 75 | $this->collectionReferences[$name][$index] = $itemName; |
76 | 76 | } |