@@ -39,7 +39,7 @@ |
||
39 | 39 | { |
40 | 40 | $this->startClock(); |
41 | 41 | |
42 | - if ($output && ! $this->output) { |
|
42 | + if ($output && !$this->output) { |
|
43 | 43 | $this->setOutput($output); |
44 | 44 | } |
45 | 45 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | protected function isItSafeToCleanOutputDirectory(): bool |
34 | 34 | { |
35 | - if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
35 | + if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
36 | 36 | $this->info('Output directory will not be emptied.'); |
37 | 37 | |
38 | 38 | return false; |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | static::needsDirectory(static::$sourceDirectory); |
50 | 50 | |
51 | - return new static(DataCollection::findFiles($name, 'md')->mapWithKeys(function (string $file): array { |
|
51 | + return new static(DataCollection::findFiles($name, 'md')->mapWithKeys(function(string $file): array { |
|
52 | 52 | return [static::makeIdentifier($file) => (new MarkdownFileParser($file))->get()]; |
53 | 53 | })); |
54 | 54 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | { |
65 | 65 | static::needsDirectory(static::$sourceDirectory); |
66 | 66 | |
67 | - return new static(DataCollection::findFiles($name, ['yaml', 'yml'])->mapWithKeys(function (string $file): array { |
|
67 | + return new static(DataCollection::findFiles($name, ['yaml', 'yml'])->mapWithKeys(function(string $file): array { |
|
68 | 68 | return [static::makeIdentifier($file) => (new MarkdownFileParser($file))->get()->matter()]; |
69 | 69 | })); |
70 | 70 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | { |
81 | 81 | static::needsDirectory(static::$sourceDirectory); |
82 | 82 | |
83 | - return new static(DataCollection::findFiles($name, 'json')->mapWithKeys(function (string $file) use ($asArray): array { |
|
83 | + return new static(DataCollection::findFiles($name, 'json')->mapWithKeys(function(string $file) use ($asArray): array { |
|
84 | 84 | return [static::makeIdentifier($file) => json_decode(Filesystem::get($file), $asArray)]; |
85 | 85 | })); |
86 | 86 | } |