Skip to content

Commit 3e986b2

Browse files
committed
CS
1 parent 9350519 commit 3e986b2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/ExerciseDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function verify(ExerciseInterface $exercise, Input $input): ResultAggrega
138138
}
139139

140140
$this->eventDispatcher->dispatch(new ExerciseRunnerEvent('verify.start', $exercise, $input));
141-
141+
142142
$this->validateChecks($this->checksToRunBefore, $exercise);
143143
$this->validateChecks($this->checksToRunAfter, $exercise);
144144

src/ExerciseRunner/CgiRunner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ private function getProcess(string $fileName, RequestInterface $request): Proces
209209
foreach ($request->getHeaders() as $name => $values) {
210210
$env[sprintf('HTTP_%s', strtoupper($name))] = implode(", ", $values);
211211
}
212-
212+
213213
return $this->processFactory->phpCgi(dirname($fileName), $env, $content);
214214
}
215215

src/ExerciseRunner/Factory/CliRunnerFactory.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class CliRunnerFactory implements ExerciseRunnerFactoryInterface
2828
* @var EventDispatcher
2929
*/
3030
private $eventDispatcher;
31-
31+
3232
/**
33-
* @var ProcessFactory
33+
* @var ProcessFactory
3434
*/
3535
private $processFactory;
3636

@@ -72,6 +72,6 @@ public function configureInput(CommandDefinition $commandDefinition): void
7272
*/
7373
public function create(ExerciseInterface $exercise): ExerciseRunnerInterface
7474
{
75-
return new CliRunner($exercise, $this->eventDispatcher, $this->processFactory);
75+
return new CliRunner($exercise, $this->eventDispatcher, $this->processFactory);
7676
}
7777
}

src/Listener/PrepareSolutionListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function __construct(ProcessFactory $processFactory)
2323
{
2424
$this->processFactory = $processFactory;
2525
}
26-
26+
2727
/**
2828
* Locations for composer executable
2929
*

0 commit comments

Comments
 (0)