Skip to content

Commit fa91936

Browse files
committed
Fix line lengths
1 parent 06c31ea commit fa91936

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

src/Exercise/AbstractExercise.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ abstract public function getName();
2929
* should exist in `workshop-root/exercises/<exercise-name>/solution/`.
3030
*
3131
* This method can be overwritten if the solution consists of multiple files,
32-
* see [Directory Solution](https://www.phpschool.io/docs/reference/exercise-solutions#directory-solution) for more details.
32+
* see [Directory Solution](https://www.phpschool.io/docs/reference/exercise-solutions#directory-solution) for
33+
* more details.
3334
*
3435
* @return SolutionInterface
3536
*/

src/Exercise/SubmissionPatchable.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
* This interface, when implemented by an exercise, tells the workshop framework that the exercise
99
* would like to patch the student's submission. This might include adding code to the top of the file like
1010
* injecting variables. The exercise should implement the `getPatch()` method and it should return a `Patch`.
11-
* See [Patching Exercise Submissions](https://www.phpschool.io/docs/reference/patching-exercise-solutions) for more details.
11+
* See [Patching Exercise Submissions](https://www.phpschool.io/docs/reference/patching-exercise-solutions) for
12+
* more details.
1213
*
1314
* @package PhpSchool\PhpWorkshop\Exercise
1415
* @author Aydin Hassan <aydin@hotmail.co.uk>

src/ExerciseDispatcher.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,10 @@ public function requireCheck($requiredCheck)
121121
*
122122
* @param ExerciseInterface $exercise The exercise instance.
123123
* @param string $fileName The absolute file name of the students solution.
124-
* @return ResultAggregator The result aggregator which contains all the results injected via the runner, checks and events.
124+
* @return ResultAggregator Contains all the results injected via the runner, checks and events.
125125
* @throws CheckNotApplicableException If the check is not applicable to the exercise type.
126-
* @throws ExerciseNotConfiguredException If the exercise does not implement the correct interface based on the checks required.
126+
* @throws ExerciseNotConfiguredException If the exercise does not implement the correct interface based on
127+
* the checks required.
127128
*/
128129
public function verify(ExerciseInterface $exercise, $fileName)
129130
{

0 commit comments

Comments
 (0)