Skip to content

Commit

Permalink
Fix: Run 'make coding-standards'
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jan 5, 2024
1 parent 3285bbd commit 04148d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__DIR__ . '/LICENSE.md',
License\Range::since(
License\Year::fromString('2018'),
new \DateTimeZone('UTC'),
new DateTimeZone('UTC'),
),
License\Holder::fromString('Andreas Möller'),
License\Url::fromString('https://github.com/ergebnis/composer-normalize'),
Expand Down
4 changes: 2 additions & 2 deletions test/DataProvider/Command/NormalizeCommandProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static function commandInvocationAndInvalidIndentSize(): \Generator

$numberGreaterThanZero = $faker->numberBetween(1);

/** @var array<string> $indentSizes */
/** @var list<string> $indentSizes */
$indentSizes = [
'string-arbitrary' => $faker->sentence(),
'integer-zero-casted-to-string' => (string) 0,
Expand Down Expand Up @@ -69,7 +69,7 @@ public static function commandInvocationAndInvalidIndentSize(): \Generator
*/
public static function commandInvocationIndentSizeAndIndentStyle(): \Generator
{
/** @var array<int> $indentSizes */
/** @var list<int> $indentSizes */
$indentSizes = [
1,
self::faker()->numberBetween(2, 4),
Expand Down

0 comments on commit 04148d2

Please sign in to comment.