Skip to content

Commit d2a438e

Browse files
authored
add missing variable name to doc tags and missing doc tags to methods (#420)
* add missing variable name to doc tags and missing doc tags to methods * code style
1 parent 0be01bf commit d2a438e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/NewCommand.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ protected function databaseOptions(): array
557557
/**
558558
* Validate the database driver input.
559559
*
560-
* @param \Symfony\Components\Console\Input\InputInterface
560+
* @param \Symfony\Components\Console\Input\InputInterface $input
561561
*/
562562
protected function validateDatabaseOption(InputInterface $input)
563563
{
@@ -751,6 +751,9 @@ protected function generateAppUrl($name)
751751

752752
/**
753753
* Get the starter kit repository, if any.
754+
*
755+
* @param \Symfony\Component\Console\Input\InputInterface $input
756+
* @return string|null
754757
*/
755758
protected function getStarterKit(InputInterface $input): ?string
756759
{
@@ -764,6 +767,9 @@ protected function getStarterKit(InputInterface $input): ?string
764767

765768
/**
766769
* Determine if a Laravel first-party starter kit has been chosen.
770+
*
771+
* @param \Symfony\Component\Console\Input\InputInterface $input
772+
* @return bool
767773
*/
768774
protected function usingLaravelStarterKit(InputInterface $input): bool
769775
{
@@ -774,7 +780,7 @@ protected function usingLaravelStarterKit(InputInterface $input): bool
774780
/**
775781
* Determine if a starter kit is being used.
776782
*
777-
* @param \Symfony\Component\Console\Input\InputInterface
783+
* @param \Symfony\Component\Console\Input\InputInterface $input
778784
* @return bool
779785
*/
780786
protected function usingStarterKit(InputInterface $input)

0 commit comments

Comments
 (0)