Skip to content

add missing variable name to doc tags and missing doc tags to methods #420

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ protected function databaseOptions(): array
/**
* Validate the database driver input.
*
* @param \Symfony\Components\Console\Input\InputInterface
* @param \Symfony\Components\Console\Input\InputInterface $input
*/
protected function validateDatabaseOption(InputInterface $input)
{
Expand Down Expand Up @@ -751,6 +751,9 @@ protected function generateAppUrl($name)

/**
* Get the starter kit repository, if any.
*
* @param \Symfony\Component\Console\Input\InputInterface $input
* @return string|null
*/
protected function getStarterKit(InputInterface $input): ?string
{
Expand All @@ -764,6 +767,9 @@ protected function getStarterKit(InputInterface $input): ?string

/**
* Determine if a Laravel first-party starter kit has been chosen.
*
* @param \Symfony\Component\Console\Input\InputInterface $input
* @return bool
*/
protected function usingLaravelStarterKit(InputInterface $input): bool
{
Expand All @@ -774,7 +780,7 @@ protected function usingLaravelStarterKit(InputInterface $input): bool
/**
* Determine if a starter kit is being used.
*
* @param \Symfony\Component\Console\Input\InputInterface
* @param \Symfony\Component\Console\Input\InputInterface $input
* @return bool
*/
protected function usingStarterKit(InputInterface $input)
Expand Down