Skip to content

Commit 22a3af3

Browse files
committed
Merge pull request #108 from php-school/hotfix/check-requires
Remove unused parameter
2 parents 4b9cd34 + 0c413e9 commit 22a3af3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/config.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
);
6767

6868
//checks which should always run (probably)
69-
$dispatcher->requireCheck(FileExistsCheck::class, ExerciseDispatcher::CHECK_BEFORE);
70-
$dispatcher->requireCheck(PhpLintCheck::class, ExerciseDispatcher::CHECK_BEFORE);
71-
$dispatcher->requireCheck(CodeParseCheck::class, ExerciseDispatcher::CHECK_BEFORE);
69+
$dispatcher->requireCheck(FileExistsCheck::class);
70+
$dispatcher->requireCheck(PhpLintCheck::class);
71+
$dispatcher->requireCheck(CodeParseCheck::class);
7272
return $dispatcher;
7373
}),
7474
ResultAggregator::class => object(ResultAggregator::class),

0 commit comments

Comments
 (0)