Skip to content

Commit

Permalink
🎨 Fix coding styles unsupported by CS Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
gturpin-dev committed Oct 28, 2024
1 parent 1eaeba6 commit 4c839a8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Tempest/Console/src/Input/ConsoleArgumentDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ public static function fromParameter(ParameterReflector $parameter): ConsoleArgu
$type = $parameter->getType();

return new ConsoleArgumentDefinition(
name : $attribute?->name ?? $parameter->getName(),
type : $type->getName(),
default : $parameter->isDefaultValueAvailable() ? $parameter->getDefaultValue() : null,
hasDefault : $parameter->isDefaultValueAvailable(),
position : $parameter->getPosition(),
name: $attribute?->name ?? $parameter->getName(),
type: $type->getName(),
default: $parameter->isDefaultValueAvailable() ? $parameter->getDefaultValue() : null,
hasDefault: $parameter->isDefaultValueAvailable(),
position: $parameter->getPosition(),
description: $attribute?->description,
aliases : $attribute->aliases ?? [],
help : $attribute?->help,
aliases: $attribute->aliases ?? [],
help: $attribute?->help,
);
}

Expand Down

0 comments on commit 4c839a8

Please # to comment.