Skip to content

Commit 9b2ec6a

Browse files
committed
docblock cleanup: test
1 parent ba00a10 commit 9b2ec6a

File tree

100 files changed

+0
-438
lines changed

Some content is hidden

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

100 files changed

+0
-438
lines changed

test/ApplicationTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
use PhpSchool\PhpWorkshop\Application;
88
use PHPUnit\Framework\TestCase;
99

10-
/**
11-
* @author Aydin Hassan <[email protected]>
12-
*/
1310
class ApplicationTest extends TestCase
1411
{
1512
public function testEventListenersFromLocalAndWorkshopConfigAreMerged(): void

test/Asset/AbstractExerciseImpl.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44

55
use PhpSchool\PhpWorkshop\Exercise\AbstractExercise;
66

7-
/**
8-
* Class AbstractExerciseImpl
9-
* @package PhpSchool\PhpWorkshopTest\Asset
10-
* @author Aydin Hassan <[email protected]>
11-
*/
127
class AbstractExerciseImpl extends AbstractExercise
138
{
149

test/Asset/CgiExerciseImpl.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
use PhpSchool\PhpWorkshop\ExerciseDispatcher;
99
use Psr\Http\Message\RequestInterface;
1010

11-
/**
12-
* @package PhpSchool\PhpWorkshopTest\Asset
13-
* @author Aydin Hassan <[email protected]>
14-
*/
1511
class CgiExerciseImpl implements ExerciseInterface, CgiExercise
1612
{
1713

test/Asset/CgiExerciseInterface.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
use PhpSchool\PhpWorkshop\Exercise\CgiExercise;
66
use PhpSchool\PhpWorkshop\Exercise\ExerciseInterface;
77

8-
/**
9-
* Interface CgiExerciseInterface
10-
* @package PhpSchool\PhpWorkshopTest\Asset
11-
* @author Aydin Hassan <[email protected]>
12-
*/
138
interface CgiExerciseInterface extends ExerciseInterface, CgiExercise
149
{
1510

test/Asset/CliExerciseImpl.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
use PhpSchool\PhpWorkshop\Exercise\ExerciseType;
88
use PhpSchool\PhpWorkshop\ExerciseDispatcher;
99

10-
/**
11-
* @package PhpSchool\PhpWorkshopTest\Asset
12-
* @author Aydin Hassan <[email protected]>
13-
*/
1410
class CliExerciseImpl implements ExerciseInterface, CliExercise
1511
{
1612

test/Asset/CliExerciseInterface.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
use PhpSchool\PhpWorkshop\Exercise\CliExercise;
66
use PhpSchool\PhpWorkshop\Exercise\ExerciseInterface;
77

8-
/**
9-
* Interface CliExerciseInterface
10-
* @package PhpSchool\PhpWorkshopTest\Asset
11-
* @author Aydin Hassan <[email protected]>
12-
*/
138
interface CliExerciseInterface extends ExerciseInterface, CliExercise
149
{
1510

test/Asset/CliExerciseMissingInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
use PhpSchool\PhpWorkshop\Exercise\ExerciseInterface;
77
use PhpSchool\PhpWorkshop\Exercise\ExerciseType;
88

9-
/**
10-
* @author Aydin Hassan <[email protected]>
11-
*/
129
class CliExerciseMissingInterface extends AbstractExercise implements ExerciseInterface
1310
{
1411

test/Asset/ComposerExercise.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88
use PhpSchool\PhpWorkshop\ExerciseCheck\ComposerExerciseCheck;
99
use PhpSchool\PhpWorkshop\ExerciseDispatcher;
1010

11-
/**
12-
* Class ComposerExercise
13-
* @package PhpSchool\PhpWorkshopTest\Asset
14-
* @author Aydin Hassan <[email protected]>
15-
*/
1611
class ComposerExercise implements ExerciseInterface, ComposerExerciseCheck
1712
{
1813
public function getName(): string

test/Asset/CustomVerifyingExerciseImpl.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
use PhpSchool\PhpWorkshop\Result\ResultInterface;
1010
use PhpSchool\PhpWorkshop\Result\Success;
1111

12-
/**
13-
* @author Aydin Hassan <[email protected]>
14-
*/
1512
class CustomVerifyingExerciseImpl extends AbstractExercise implements ExerciseInterface, CustomVerifyingExercise
1613
{
1714

test/Asset/DatabaseExerciseInterface.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
use PhpSchool\PhpWorkshop\Exercise\ExerciseInterface;
77
use PhpSchool\PhpWorkshop\ExerciseCheck\DatabaseExerciseCheck;
88

9-
/**
10-
* interface DatabaseExercise
11-
* @package PhpSchool\PhpWorkshopTest
12-
* @author Aydin Hassan <[email protected]>
13-
*/
149
interface DatabaseExerciseInterface extends ExerciseInterface, DatabaseExerciseCheck, CliExercise
1510
{
1611
}

0 commit comments

Comments
 (0)