Skip to content
Merged

CS #234

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Command/HelpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*/
class HelpCommand
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@

class RuntimeException extends \RuntimeException
{

}
1 change: 0 additions & 1 deletion src/Exception/SolutionExecutionException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@
*/
class SolutionExecutionException extends RuntimeException
{

}
1 change: 0 additions & 1 deletion src/Exercise/AbstractExercise.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
abstract class AbstractExercise
{

/**
* Get the name of the exercise, like `Hello World!`.
*
Expand Down
1 change: 0 additions & 1 deletion src/Exercise/ExerciseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*/
interface ExerciseInterface
{

/**
* Get the name of the exercise, like `Hello World!`.
*
Expand Down
1 change: 0 additions & 1 deletion src/Listener/RealPathListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
*/
class RealPathListener
{

/**
* @param ExerciseRunnerEvent $event
*/
Expand Down
1 change: 0 additions & 1 deletion src/Result/Cgi/FailureInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
*/
interface FailureInterface extends ResultInterface
{

}
1 change: 0 additions & 1 deletion src/Result/Cgi/GenericFailure.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*/
class GenericFailure extends Failure implements FailureInterface
{

/**
* @var RequestInterface
*/
Expand Down
1 change: 0 additions & 1 deletion src/Result/Cgi/SuccessInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
*/
interface SuccessInterface extends ResultInterface
{

}
1 change: 0 additions & 1 deletion src/Result/Cli/FailureInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
*/
interface FailureInterface extends ResultInterface
{

}
1 change: 0 additions & 1 deletion src/Result/Cli/SuccessInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
*/
interface SuccessInterface extends ResultInterface
{

}
1 change: 0 additions & 1 deletion src/Result/FailureInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
*/
interface FailureInterface extends ResultInterface
{

}
1 change: 0 additions & 1 deletion src/Result/SuccessInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
*/
interface SuccessInterface extends ResultInterface
{

}
1 change: 0 additions & 1 deletion src/ResultRenderer/ResultRendererInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
*/
interface ResultRendererInterface
{

/**
* This method should return a string representation of the result,
* formatted for output on the command line.
Expand Down
1 change: 0 additions & 1 deletion src/Utils/ArrayObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/
class ArrayObject implements IteratorAggregate, Countable
{

/**
* @var array<T>
*/
Expand Down
1 change: 0 additions & 1 deletion src/Utils/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@
*/
class Collection extends ArrayObject
{

}
1 change: 0 additions & 1 deletion test/Asset/AbstractExerciseImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class AbstractExerciseImpl extends AbstractExercise
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion test/Asset/CgiExerciseImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

class CgiExerciseImpl implements ExerciseInterface, CgiExercise
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion test/Asset/CgiExerciseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@

interface CgiExerciseInterface extends ExerciseInterface, CgiExercise
{

}
1 change: 0 additions & 1 deletion test/Asset/CliExerciseImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

class CliExerciseImpl implements ExerciseInterface, CliExercise
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion test/Asset/CliExerciseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@

interface CliExerciseInterface extends ExerciseInterface, CliExercise
{

}
1 change: 0 additions & 1 deletion test/Asset/CliExerciseMissingInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

class CliExerciseMissingInterface extends AbstractExercise implements ExerciseInterface
{

/**
* Get the name of the exercise, like `Hello World!`.
*/
Expand Down
1 change: 0 additions & 1 deletion test/Asset/CustomVerifyingExerciseImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

class CustomVerifyingExerciseImpl extends AbstractExercise implements ExerciseInterface, CustomVerifyingExercise
{

/**
* Get the name of the exercise, like `Hello World!`.
*/
Expand Down
1 change: 0 additions & 1 deletion test/Check/DatabaseCheckTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

class DatabaseCheckTest extends TestCase
{

/**
* @var DatabaseCheck
*/
Expand Down