Skip to content

Commit b5254cf

Browse files
committed
fix: resolve insights warnings
1 parent c3849e4 commit b5254cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Application/ConfigResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ final class ConfigResolver
3939
* Merge the given config with the specified preset.
4040
*
4141
* @param array<string, string|array> $config
42-
*
4342
* @param \Symfony\Component\Console\Input\InputInterface $input
43+
*
4444
* @return Configuration
4545
*/
4646
public static function resolve(array $config, InputInterface $input): Configuration

src/Domain/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public function getMinStyle(): float
204204
*/
205205
public function getDisableSecurityCheck(): bool
206206
{
207-
return (bool) $this->requirements['disable-security-check'] ?? false;
207+
return (bool) ($this->requirements['disable-security-check'] ?? false);
208208
}
209209

210210
/**

0 commit comments

Comments
 (0)