Skip to content

Commit 1cc74db

Browse files
committed
Fix CS failure for docblock line length
1 parent 0221e13 commit 1cc74db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Result/FunctionRequirementsFailure.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class FunctionRequirementsFailure implements FailureInterface
2626

2727
/**
2828
* @param CheckInterface $check The check that produced this result.
29-
* @param array<array{function: string, line: int}> $bannedFunctions A list of functions that were used, but were banned.
30-
* @param array<int, string> $missingFunctions A list of functions that were not used, but were required.
29+
* @param array<array{function: string, line: int}> $bannedFunctions Functions that were used, but were banned.
30+
* @param array<int, string> $missingFunctions Functions that were not used, but were required.
3131
*/
3232
public function __construct(CheckInterface $check, array $bannedFunctions, array $missingFunctions)
3333
{

0 commit comments

Comments
 (0)