Skip to content

Commit

Permalink
Fix QA
Browse files Browse the repository at this point in the history
  • Loading branch information
markwalet committed Jan 6, 2025
1 parent 041aed5 commit 4548457
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Factories/ConfigurationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ConfigurationFactory
/**
* Creates a PHP CS Fixer Configuration with the given array of rules.
*
* @param array<string, array<string, array<int|string, string|null>|bool|string>|bool> $rules
* @param array<string, array<string, array<int|string, string|int|string[]>|bool|string>|bool> $rules
* @return \PhpCsFixer\ConfigInterface
*/
public static function preset($rules)
Expand Down
4 changes: 2 additions & 2 deletions app/ValueObjects/Issue.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Issue
* @param string $path
* @param string $file
* @param string $symbol
* @param array<string, array<int, string>|\Throwable> $payload
* @param array<string, list<string>|string|\Throwable> $payload
*/
public function __construct(
protected $path,
Expand Down Expand Up @@ -93,7 +93,7 @@ public function symbol()
/**
* Returns the issue's diff, if any.
*
* @return string|null
* @return string|void
*/
protected function diff()
{
Expand Down

0 comments on commit 4548457

Please sign in to comment.