Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHPDoc: address multiple variables defined in one @param #3001

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion issue-bot/src/Playground/TabCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TabCreator
{

/**
* @param array<int, list<PlaygroundError>> $versionedErrors $versionedErrors
* @param array<int, list<PlaygroundError>> $versionedErrors
* @return list<PlaygroundResultTab>
*/
public function create(array $versionedErrors): array
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/Classes/InstantiationRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ private function checkClassName(string $class, bool $isName, Node $node, Scope $
}

/**
* @param Node\Expr\New_ $node $node
* @param Node\Expr\New_ $node
* @return array<int, array{string, bool}>
*/
private function getClassNames(Node $node, Scope $scope): array
Expand Down
2 changes: 1 addition & 1 deletion tests/PHPStan/Analyser/data/array-filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function withoutAnyArgs(): void
}

/**
* @param $var1 $mixed
* @param mixed $var1
*/
function withMixedInsteadOfArray($var1): void
{
Expand Down