style: address stan + lint issues

This commit is contained in:
jordanbrauer
2021-04-06 19:32:49 -05:00
parent ff44589572
commit 54f9397f47
7 changed files with 10 additions and 16 deletions

View File

@ -25,7 +25,7 @@ final class TestRepository
private $state = [];
/**
* @var array<string, array<int, array<int, string>>>
* @var array<string, array<int, array<int, string, Closure>>>
*/
private $uses = [];
@ -96,10 +96,10 @@ final class TestRepository
/**
* Uses the given `$testCaseClass` on the given `$paths`.
*
* @param array<int, string> $classOrTraits
* @param array<int, string> $groups
* @param array<int, string> $paths
* @param array<intm Closure> $hooks
* @param array<int, string> $classOrTraits
* @param array<int, string> $groups
* @param array<int, string> $paths
* @param array<int, Closure> $hooks
*/
public function use(array $classOrTraits, array $groups, array $paths, array $hooks): void
{