Skip to content

Commit 82bbacb

Browse files
authored
Merge pull request #166 from php-school/docblock-cleanup
Docblock cleanup
2 parents 12b5cc2 + 9b2ec6a commit 82bbacb

File tree

163 files changed

+64
-520
lines changed

Some content is hidden

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

163 files changed

+64
-520
lines changed

src/Command/HelpCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
use PhpSchool\PhpWorkshop\Output\OutputInterface;
77

88
/**
9-
* Class HelpCommand
10-
* @author Aydin Hassan <[email protected]>
9+
* A command to display help on running the workshop.
1110
*/
1211
class HelpCommand
1312
{

src/Command/MenuCommand.php

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

55
use PhpSchool\CliMenu\CliMenu;
66

7+
/**
8+
* A command to open the app menu
9+
*/
710
class MenuCommand
811
{
912
/**

src/Command/MenuCommandInvoker.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44

55
use PhpSchool\CliMenu\CliMenu;
66

7+
/**
8+
* A helper to expose commands as callables for menu items
9+
*/
710
class MenuCommandInvoker
811
{
9-
1012
/**
1113
* @var callable
1214
*/

src/Command/PrintCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
use PhpSchool\PhpWorkshop\UserState;
99

1010
/**
11-
* Class PrintCommand
12-
* @author Aydin Hassan <[email protected]>
11+
* A command to print the exercise's readme
1312
*/
1413
class PrintCommand
1514
{

src/Command/RunCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
use PhpSchool\PhpWorkshop\Input\Input;
88
use PhpSchool\PhpWorkshop\Output\OutputInterface;
99
use PhpSchool\PhpWorkshop\UserState;
10-
use PhpSchool\PhpWorkshop\UserStateSerializer;
1110

11+
/**
12+
* A command to run the users solution
13+
*/
1214
class RunCommand
1315
{
1416
/**

src/Command/VerifyCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
use PhpSchool\PhpWorkshop\UserState;
1212
use PhpSchool\PhpWorkshop\UserStateSerializer;
1313

14+
/**
15+
* A command to verify the users solution
16+
*/
1417
class VerifyCommand
1518
{
1619
/**

src/CommandArgument.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace PhpSchool\PhpWorkshop;
44

55
/**
6-
* @author Aydin Hassan <[email protected]>
6+
* Command argument definition
77
*/
88
class CommandArgument
99
{

src/ComposerUtil/LockFileParser.php

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

77
/**
88
* Utility for reading installed package versions from a `composer.lock` file.
9-
*
10-
* @author Aydin Hassan <[email protected]>
119
*/
1210
class LockFileParser
1311
{

src/Event/CgiExecuteEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace PhpSchool\PhpWorkshop\Event;
44

5-
use Assert\Assertion;
65
use Psr\Http\Message\RequestInterface;
76

87
/**

src/Event/ContainerListenerHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace PhpSchool\PhpWorkshop\Event;
44

55
/**
6-
* @author Aydin Hassan <[email protected]>
6+
* A utility to reference listeners in the container
77
*/
88
class ContainerListenerHelper
99
{

0 commit comments

Comments
 (0)