Skip to content

Commit cc30c17

Browse files
authored
Merge pull request #234 from php-school/cs
CS
2 parents 237bba5 + b16e0a0 commit cc30c17

24 files changed

+0
-24
lines changed

src/Command/HelpCommand.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class HelpCommand
1414
{
15-
1615
/**
1716
* @var string
1817
*/

src/Exception/RuntimeException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@
66

77
class RuntimeException extends \RuntimeException
88
{
9-
109
}

src/Exception/SolutionExecutionException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@
1212
*/
1313
class SolutionExecutionException extends RuntimeException
1414
{
15-
1615
}

src/Exercise/AbstractExercise.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
abstract class AbstractExercise
1717
{
18-
1918
/**
2019
* Get the name of the exercise, like `Hello World!`.
2120
*

src/Exercise/ExerciseInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
interface ExerciseInterface
1414
{
15-
1615
/**
1716
* Get the name of the exercise, like `Hello World!`.
1817
*

src/Listener/RealPathListener.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
*/
1212
class RealPathListener
1313
{
14-
1514
/**
1615
* @param ExerciseRunnerEvent $event
1716
*/

src/Result/Cgi/FailureInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@
1010
*/
1111
interface FailureInterface extends ResultInterface
1212
{
13-
1413
}

src/Result/Cgi/GenericFailure.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
*/
1414
class GenericFailure extends Failure implements FailureInterface
1515
{
16-
1716
/**
1817
* @var RequestInterface
1918
*/

src/Result/Cgi/SuccessInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@
1010
*/
1111
interface SuccessInterface extends ResultInterface
1212
{
13-
1413
}

src/Result/Cli/FailureInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@
1010
*/
1111
interface FailureInterface extends ResultInterface
1212
{
13-
1413
}

0 commit comments

Comments
 (0)