Completed
Push — master ( dae493...440cc5 )
by Thomas
08:24
created
src/generator/responder/ToOneRelationshipJsonResponderGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 	/** @var Table */
15 15
 	private $foreign;
16 16
 	
17
+	/**
18
+	 * @param \keeko\tools\services\CommandService $service
19
+	 */
17 20
 	public function __construct($service, Table $model, Table $foreign) {
18 21
 		parent::__construct($service);
19 22
 		$this->model = $model;
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 1 patch
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.
src/generator/responder/PayloadGeneratorTrait.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/AbstractKeekoCommand.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/AbstractEmberCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
 		}
60 60
 	}
61 61
 	
62
+	/**
63
+	 * @return Project|null
64
+	 */
62 65
 	private function getProject($packageName = null) {
63 66
 		if ($this->prj === null) {
64 67
 			if ($packageName === null) {
Please login to merge, or discard this patch.
src/generator/GeneratorFactory.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,6 @@  discard block
 block discarded – undo
64 64
 	 * Creates a new package generator
65 65
 	 *
66 66
 	 * @param string $type
67
-	 * @param CommandService $this->serivce
68 67
 	 * @return AbstractPackageGenerator
69 68
 	 */
70 69
 	public function createPackageGenerator($type) {
@@ -139,7 +138,6 @@  discard block
 block discarded – undo
139 138
 	 * Creates a generator for the given json respose
140 139
 	 * 
141 140
 	 * @param string $type
142
-	 * @param CommandService $this->service
143 141
 	 * @return AbstractModelJsonResponderGenerator
144 142
 	 */
145 143
 	public function createModelJsonResponderGenerator($type) {
Please login to merge, or discard this patch.
src/generator/api/ApiOperationGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -246,6 +246,9 @@
 block discarded – undo
246 246
 		return $action;
247 247
 	}
248 248
 	
249
+	/**
250
+	 * @param string $type
251
+	 */
249 252
 	private function generateRelationshipAction(Relationship $relationship, $type) {
250 253
 		$model = $relationship->getModel();
251 254
 		$module = $this->package->getKeeko()->getModule();
Please login to merge, or discard this patch.
src/services/GeneratorDefinitionService.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
 	 * Returns all attributes that aren't written onto a model (because manually filter or computed)
88 88
 	 *
89 89
 	 * @param Table $model
90
-	 * @return array
90
+	 * @return string[]
91 91
 	 */
92 92
 	public function getWriteFilter(Table $model) {
93 93
 		$modelName = $model->getOriginCommonName();
Please login to merge, or discard this patch.