Completed
Push — master ( dd800d...af5658 )
by Thomas
07:26
created
src/command/GenerateActionCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@
 block discarded – undo
91 91
 		;
92 92
 	}
93 93
 	
94
+	/**
95
+	 * @param string $name
96
+	 */
94 97
 	protected function runCommand($name, InputInterface $input, OutputInterface $output) {
95 98
 		// return whether command has already executed
96 99
 		$app = $this->getApplication();
Please login to merge, or discard this patch.
src/command/InitCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 	}
88 88
 	
89 89
 	/**
90
-	 * @return PackageSchema
90
+	 * @return \keeko\framework\schema\PackageSchema
91 91
 	 */
92 92
 	protected function getPackage() {
93 93
 		return $this->package;
Please login to merge, or discard this patch.
src/ui/AbstractUI.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 	abstract public function show();
26 26
 	
27 27
 	/**
28
-	 * @return HelperSet
28
+	 * @return \Symfony\Component\Console\Helper\HelperSet|null
29 29
 	 */
30 30
 	protected function getHelperSet() {
31 31
 		return $this->command->getHelperSet();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use keeko\tools\command\AbstractGenerateCommand;
5 5
 use Symfony\Component\Console\Output\OutputInterface;
6 6
 use Symfony\Component\Console\Input\InputInterface;
7
-use Symfony\Component\Console\Command\Command;
8 7
 use Symfony\Component\Console\Input\ArrayInput;
9 8
 
10 9
 class MagicCommand extends AbstractGenerateCommand {
Please login to merge, or discard this patch.