Skip to content

Commit c66d5d6

Browse files
committed
Remove useless docblocks
1 parent ae9f371 commit c66d5d6

File tree

77 files changed

+2
-249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2
-249
lines changed

src/Application.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
/**
1414
* This is the main application class, this takes care of bootstrapping, routing and
1515
* output.
16-
*
17-
* @package PhpSchool\PhpWorkshop
18-
* @author Aydin Hassan <aydin@hotmail.co.uk>
1916
*/
2017
final class Application
2118
{

src/Check/CheckInterface.php

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,17 @@
44

55
/**
66
* Base Interface for Checks.
7-
*
8-
* @package PhpSchool\PhpWorkshop\Comparator
9-
* @author Aydin Hassan <aydin@hotmail.co.uk>
107
*/
118
interface CheckInterface
129
{
1310
/**
1411
* Return the check's name
15-
*
16-
* @return string
1712
*/
18-
public function getName();
13+
public function getName() : string;
1914

2015
/**
2116
* This returns the interface the exercise should implement
2217
* when requiring this check. It should be the FQCN of the interface.
23-
*
24-
* @return string
2518
*/
26-
public function getExerciseInterface();
19+
public function getExerciseInterface() : string;
2720
}

src/Check/CheckRepository.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
/**
88
* This class is the repository containing all the available checks
99
* for the workshop framework.
10-
*
11-
* @package PhpSchool\PhpWorkshop\Check
12-
* @author Aydin Hassan <aydin@hotmail.co.uk>
1310
*/
1411
class CheckRepository
1512
{

src/Check/CodeParseCheck.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
/**
1717
* This check attempts to parse a student's solution and returns
1818
* a success or failure based on the result of the parsing.
19-
*
20-
* @package PhpSchool\PhpWorkshop\Check
21-
* @author Aydin Hassan <aydin@hotmail.co.uk>
2219
*/
2320
class CodeParseCheck implements SimpleCheckInterface
2421
{

src/Check/FileExistsCheck.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
/**
1313
* This check verifies that the student's solution file actually exists.
14-
*
15-
* @package PhpSchool\PhpWorkshop\Check
16-
* @author Aydin Hassan <aydin@hotmail.co.uk>
1714
*/
1815
class FileExistsCheck implements SimpleCheckInterface
1916
{

src/Check/FunctionRequirementsCheck.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
/**
2020
* This check verifies that the student's solution contains usages of some required functions
2121
* and also does not use certain functions (specified by the exercise).
22-
*
23-
* @package PhpSchool\PhpWorkshop\Check
24-
* @author Aydin Hassan <aydin@hotmail.co.uk>
2522
*/
2623
class FunctionRequirementsCheck implements SimpleCheckInterface
2724
{

src/Check/ListenableCheckInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
/**
88
* The interface for advanced listener checks which can execute logic at any dispatched event.
9-
*
10-
* @package PhpSchool\PhpWorkshop\Check
11-
* @author Aydin Hassan <aydin@hotmail.co.uk>
129
*/
1310
interface ListenableCheckInterface extends CheckInterface
1411
{

src/Check/PhpLintCheck.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
/**
1414
* This check attempts to lint a student's solution and returns
1515
* a success or failure based on the result of the linting.
16-
*
17-
* @package PhpSchool\PhpWorkshop\Check
18-
* @author Aydin Hassan <aydin@hotmail.co.uk>
1916
*/
2017
class PhpLintCheck implements SimpleCheckInterface
2118
{

src/Check/SimpleCheckInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
/**
1111
* The interface for simple checks, checks that execute at one defined point, before or after
1212
* output verification.
13-
*
14-
* @package PhpSchool\PhpWorkshop\Comparator
15-
* @author Aydin Hassan <aydin@hotmail.co.uk>
1613
*/
1714
interface SimpleCheckInterface extends CheckInterface
1815
{

src/CodeInsertion.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
/**
88
* This class is a simple DTO to represent a code insertion which should
99
* be performed on a students solution.
10-
*
11-
* @package PhpSchool\PhpWorkshop
12-
* @author Aydin Hassan <aydin@hotmail.co.uk>
1310
*/
1411
class CodeInsertion
1512
{

0 commit comments

Comments
 (0)