@@ -40,7 +40,7 @@ |
||
40 | 40 | { |
41 | 41 | return \count(array_filter( |
42 | 42 | $this->methods, |
43 | - static fn (Method $method): bool => $method->hasVisibility($modifier) |
|
43 | + static fn(Method $method): bool => $method->hasVisibility($modifier) |
|
44 | 44 | )); |
45 | 45 | } |
46 | 46 |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function constructorParameters(): array |
68 | 68 | { |
69 | - $constructors = array_filter($this->methods, static fn (Method $method): bool => $method->isConstructor()); |
|
69 | + $constructors = array_filter($this->methods, static fn(Method $method): bool => $method->isConstructor()); |
|
70 | 70 | $constructor = reset($constructors); |
71 | 71 | |
72 | 72 | return $constructor === false ? [] : $constructor->parameters(); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | { |
82 | 82 | return \count(array_filter( |
83 | 83 | $this->attributes, |
84 | - static fn (Attribute $attribute): bool => $attribute->hasVisibility($modifier) |
|
84 | + static fn(Attribute $attribute): bool => $attribute->hasVisibility($modifier) |
|
85 | 85 | )); |
86 | 86 | } |
87 | 87 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | return \count(array_filter( |
96 | 96 | $this->attributes, |
97 | - static fn (Attribute $attribute): bool => |
|
97 | + static fn(Attribute $attribute): bool => |
|
98 | 98 | $attribute->hasTypeDeclaration() && $attribute->hasVisibility($modifier) |
99 | 99 | )); |
100 | 100 | } |
@@ -152,6 +152,6 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function isAbstract(): bool |
154 | 154 | { |
155 | - return \count(array_filter($this->methods(), static fn (Method $method): bool => $method->isAbstract())) > 0; |
|
155 | + return \count(array_filter($this->methods(), static fn(Method $method): bool => $method->isAbstract())) > 0; |
|
156 | 156 | } |
157 | 157 | } |
@@ -19,6 +19,6 @@ |
||
19 | 19 | |
20 | 20 | public function identifier(): string |
21 | 21 | { |
22 | - return (string) $this->name(); |
|
22 | + return (string)$this->name(); |
|
23 | 23 | } |
24 | 24 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | public function addExternalDefinitionsTo(Codebase $codebase): void |
28 | 28 | { |
29 | - array_map(static fn (RelationshipsResolver $resolver) => $resolver->resolve($codebase), $this->resolvers); |
|
29 | + array_map(static fn(RelationshipsResolver $resolver) => $resolver->resolve($codebase), $this->resolvers); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** @param RelationshipsResolver[] $resolvers */ |
@@ -72,7 +72,7 @@ |
||
72 | 72 | { |
73 | 73 | $process = new Process([$this->name->command(), '-Tpng', '-o', $outputFile, $inputFile]); |
74 | 74 | $process->run(); |
75 | - if (! $process->isSuccessful()) { |
|
75 | + if (!$process->isSuccessful()) { |
|
76 | 76 | throw ImageGenerationFailure::withOutput($process->getErrorOutput()); |
77 | 77 | } |
78 | 78 | } |
@@ -22,10 +22,10 @@ |
||
22 | 22 | /** @param mixed[] $configuration */ |
23 | 23 | public function __construct(array $configuration) |
24 | 24 | { |
25 | - $extractAssociations = (bool) ($configuration['associations'] ?? false); |
|
25 | + $extractAssociations = (bool)($configuration['associations'] ?? false); |
|
26 | 26 | $this->associationsBuilder = $extractAssociations ? new EdgesBuilder() : new NoAssociationsBuilder(); |
27 | 27 | $theme = new ThemeName($configuration['theme']); |
28 | - $hideEmptyBlocks = (bool) ($configuration['hide-empty-blocks'] ?? false); |
|
28 | + $hideEmptyBlocks = (bool)($configuration['hide-empty-blocks'] ?? false); |
|
29 | 29 | $this->digraphStyle = $hideEmptyBlocks |
30 | 30 | ? DigraphStyle::withoutEmptyBlocks($theme) |
31 | 31 | : DigraphStyle::default($theme); |
@@ -52,7 +52,7 @@ |
||
52 | 52 | ->pipe($this->findCode) |
53 | 53 | ->pipe($this->parseCode) |
54 | 54 | ->pipe($this->createDigraph) |
55 | - ->pipe(fn (OutputContent $content) => $this->saveFile->saveTo($content, $input->filePath())); |
|
55 | + ->pipe(fn(OutputContent $content) => $this->saveFile->saveTo($content, $input->filePath())); |
|
56 | 56 | |
57 | 57 | $pipeline->process($input->codebaseDirectory()); |
58 | 58 | } |
@@ -50,7 +50,7 @@ |
||
50 | 50 | ->pipe($this->parseCode) |
51 | 51 | ->pipe($this->createDigraph) |
52 | 52 | ->pipe($this->createClassDiagram) |
53 | - ->pipe(fn (OutputContent $content) => $this->saveFile->saveTo($content, $input->filePath())); |
|
53 | + ->pipe(fn(OutputContent $content) => $this->saveFile->saveTo($content, $input->filePath())); |
|
54 | 54 | |
55 | 55 | $pipeline->process($input->codebaseDirectory()); |
56 | 56 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | ->pipe($this->findCode) |
48 | 48 | ->pipe($this->parseCode) |
49 | 49 | ->pipe($this->calculateStatistics) |
50 | - ->pipe(fn (OutputContent $content) => $this->saveFile->saveTo($content, $input->filePath())); |
|
50 | + ->pipe(fn(OutputContent $content) => $this->saveFile->saveTo($content, $input->filePath())); |
|
51 | 51 | |
52 | 52 | $pipeline->process($input->codebaseDirectory()); |
53 | 53 | } |