Commit adf10af8 authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #58 from jerguslejko/fix/phpdocs

Fix PHP docs
parents 3518efc2 1f9e1259
...@@ -32,8 +32,8 @@ class NewCommand extends Command ...@@ -32,8 +32,8 @@ class NewCommand extends Command
/** /**
* Execute the command. * Execute the command.
* *
* @param InputInterface $input * @param \Symfony\Component\Console\Input\InputInterface $input
* @param OutputInterface $output * @param \Symfony\Component\Console\Output\OutputInterface $output
* @return void * @return void
*/ */
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
...@@ -174,7 +174,7 @@ class NewCommand extends Command ...@@ -174,7 +174,7 @@ class NewCommand extends Command
* @param \Symfony\Component\Console\Input\InputInterface $input * @param \Symfony\Component\Console\Input\InputInterface $input
* @return string * @return string
*/ */
protected function getVersion($input) protected function getVersion(InputInterface $input)
{ {
if ($input->getOption('dev')) { if ($input->getOption('dev')) {
return 'develop'; return 'develop';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment