Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4f938dc

Browse files
authoredMay 17, 2024··
Merge branch 'master' into context
2 parents 90a77ba + b206fce commit 4f938dc

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed
 

‎src/Exercise/AbstractExercise.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace PhpSchool\PhpWorkshop\Exercise;
66

77
use PhpSchool\PhpWorkshop\Event\EventDispatcher;
8+
use PhpSchool\PhpWorkshop\ExerciseDispatcher;
89
use PhpSchool\PhpWorkshop\Solution\SingleFileSolution;
910
use PhpSchool\PhpWorkshop\Solution\SolutionInterface;
1011
use ReflectionClass;

‎test/Asset/CgiExerciseImpl.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,6 @@ public function setScenario(CgiScenario $scenario): void
7171
public function defineTestScenario(): CgiScenario
7272
{
7373
return $this->scenario;
74+
7475
}
7576
}

‎test/Asset/CliExerciseImpl.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,6 @@ public function getRequiredChecks(): array
7777
return [];
7878
}
7979

80+
8081
public function defineListeners(EventDispatcher $dispatcher): void {}
8182
}

‎test/Asset/CliExerciseMissingInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace PhpSchool\PhpWorkshopTest\Asset;
44

5+
use PhpSchool\PhpWorkshop\Check\FileComparisonCheck;
6+
use PhpSchool\PhpWorkshop\Event\EventDispatcher;
57
use PhpSchool\PhpWorkshop\Exercise\AbstractExercise;
68
use PhpSchool\PhpWorkshop\Exercise\ExerciseInterface;
79
use PhpSchool\PhpWorkshop\Exercise\ExerciseType;

0 commit comments

Comments
 (0)
Please sign in to comment.