File tree Expand file tree Collapse file tree 5 files changed +0
-12
lines changed Expand file tree Collapse file tree 5 files changed +0
-12
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use PhpSchool \PhpWorkshop \ExerciseDispatcher ;
6
6
use PhpSchool \PhpWorkshop \ExerciseRepository ;
7
- use PhpSchool \PhpWorkshop \ExerciseRunner ;
8
7
use PhpSchool \PhpWorkshop \Output \OutputInterface ;
9
- use PhpSchool \PhpWorkshop \ResultRenderer \ResultsRenderer ;
10
8
use PhpSchool \PhpWorkshop \UserState ;
11
9
use PhpSchool \PhpWorkshop \UserStateSerializer ;
12
10
Original file line number Diff line number Diff line change 2
2
3
3
namespace PhpSchool \PhpWorkshop ;
4
4
5
- use Assert \Assertion ;
6
- use PhpSchool \PhpWorkshop \Check \CheckCollection ;
7
5
use PhpSchool \PhpWorkshop \Check \CheckInterface ;
8
6
use PhpSchool \PhpWorkshop \Check \CheckRepository ;
9
7
use PhpSchool \PhpWorkshop \Check \ListenableCheckInterface ;
16
14
use PhpSchool \PhpWorkshop \Exercise \ExerciseInterface ;
17
15
use PhpSchool \PhpWorkshop \Factory \RunnerFactory ;
18
16
use PhpSchool \PhpWorkshop \Output \OutputInterface ;
19
- use Symfony \Component \Process \Process ;
20
17
21
18
/**
22
19
* This class is used to verify/run a student's solution to an exercise. It routes to the correct
Original file line number Diff line number Diff line change 2
2
3
3
namespace PhpSchool \PhpWorkshop \ExerciseRunner ;
4
4
5
- use PhpSchool \PhpWorkshop \Event \CliEvent ;
6
5
use PhpSchool \PhpWorkshop \Event \CliExecuteEvent ;
7
6
use PhpSchool \PhpWorkshop \Event \Event ;
8
7
use PhpSchool \PhpWorkshop \Event \EventDispatcher ;
9
8
use PhpSchool \PhpWorkshop \Exception \CodeExecutionException ;
10
9
use PhpSchool \PhpWorkshop \Exception \SolutionExecutionException ;
11
10
use PhpSchool \PhpWorkshop \Exercise \CliExercise ;
12
- use PhpSchool \PhpWorkshop \Exercise \ExerciseInterface ;
13
- use PhpSchool \PhpWorkshop \Exercise \ExerciseType ;
14
- use PhpSchool \PhpWorkshop \ExerciseCheck \StdOutExerciseCheck ;
15
11
use PhpSchool \PhpWorkshop \Output \OutputInterface ;
16
12
use PhpSchool \PhpWorkshop \Result \Failure ;
17
13
use PhpSchool \PhpWorkshop \Result \ResultInterface ;
Original file line number Diff line number Diff line change 5
5
use Colors \Color ;
6
6
use PhpSchool \CliMenu \Terminal \TerminalInterface ;
7
7
use Psr \Http \Message \RequestInterface ;
8
- use Zend \Diactoros \Request ;
9
8
10
9
/**
11
10
* Class StdOutput
Original file line number Diff line number Diff line change 3
3
namespace PhpSchool \PhpWorkshop \ExerciseRunner ;
4
4
5
5
use Colors \Color ;
6
- use InvalidArgumentException ;
7
6
use PhpSchool \CliMenu \Terminal \TerminalInterface ;
8
7
use PhpSchool \PhpWorkshop \Event \EventDispatcher ;
9
8
use PhpSchool \PhpWorkshop \Exception \SolutionExecutionException ;
10
9
use PhpSchool \PhpWorkshop \Exercise \ExerciseType ;
11
- use PhpSchool \PhpWorkshop \Output \OutputInterface ;
12
10
use PhpSchool \PhpWorkshop \Output \StdOutput ;
13
11
use PhpSchool \PhpWorkshop \Result \CgiOutRequestFailure ;
14
12
use PhpSchool \PhpWorkshop \Result \CgiOutResult ;
You can’t perform that action at this time.
0 commit comments