Skip to content

Commit 22b7555

Browse files
committed
fabbot
1 parent 0af6178 commit 22b7555

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/MakerInterface.php

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
use Symfony\Component\Console\Input\InputInterface;
1616

1717
/**
18-
* Interface that all maker commands must implement
18+
* Interface that all maker commands must implement.
1919
*
2020
* @author Ryan Weaver <[email protected]>
2121
*/
2222
interface MakerInterface
2323
{
2424
/**
25-
* Return the command name for your maker (e.g. make:report)
25+
* Return the command name for your maker (e.g. make:report).
2626
*
2727
* @return string
2828
*/
@@ -34,7 +34,7 @@ public static function getCommandName(): string;
3434
* By default, all arguments will be asked interactively. If you want
3535
* to avoid that, use the $inputConfig->setArgumentAsNonInteractive() method.
3636
*
37-
* @param Command $command
37+
* @param Command $command
3838
* @param InputConfiguration $inputConfig
3939
*/
4040
public function configureCommand(Command $command, InputConfiguration $inputConfig): void;
@@ -50,8 +50,8 @@ public function configureDependencies(DependencyBuilder $dependencies): void;
5050
* If necessary, you can use this method to interactively ask the user for input.
5151
*
5252
* @param InputInterface $input
53-
* @param ConsoleStyle $io
54-
* @param Command $command
53+
* @param ConsoleStyle $io
54+
* @param Command $command
5555
*/
5656
public function interact(InputInterface $input, ConsoleStyle $io, Command $command): void;
5757

@@ -60,6 +60,7 @@ public function interact(InputInterface $input, ConsoleStyle $io, Command $comma
6060
* template files returned from getFiles().
6161
*
6262
* @param InputInterface $input
63+
*
6364
* @return array
6465
*/
6566
public function getParameters(InputInterface $input): array;
@@ -74,14 +75,15 @@ public function getParameters(InputInterface $input): array;
7475
* );
7576
*
7677
* @param array $params The parameters returned from getParameters()
78+
*
7779
* @return array
7880
*/
7981
public function getFiles(array $params): array;
8082

8183
/**
8284
* An opportunity to write a nice message after generation finishes.
8385
*
84-
* @param array $params
86+
* @param array $params
8587
* @param ConsoleStyle $io
8688
*/
8789
public function writeNextStepsMessage(array $params, ConsoleStyle $io): void;

0 commit comments

Comments
 (0)