Completed
Push — master ( 2fb143...d99a08 )
by Thomas
09:36
created
src/command/GenerateActionCommand.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -281,7 +281,6 @@  discard block
 block discarded – undo
281 281
 	/**
282 282
 	 * Generates an action.
283 283
 	 *  
284
-	 * @param string $actionName
285 284
 	 * @param ActionSchema $action the action node from composer.json
286 285
 	 */
287 286
 	private function generateNamed($actionName) {
@@ -295,7 +294,7 @@  discard block
 block discarded – undo
295 294
 	/**
296 295
 	 * Generates the action for the package
297 296
 	 * 
298
-	 * @param unknown $actionName
297
+	 * @param string $actionName
299 298
 	 * @throws \RuntimeException
300 299
 	 * @return ActionSchema
301 300
 	 */
Please login to merge, or discard this patch.
src/generator/action/AbstractModelActionGenerator.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,8 @@
 block discarded – undo
11 11
 	/**
12 12
 	 * Generates an action trait with the given name as classname
13 13
 	 * 
14
-	 * @param string $name
15 14
 	 * @param ActionSchema $action
16
-	 * @return PhpTrait
15
+	 * @return PhpClass
17 16
 	 */
18 17
 	public function generate(ActionSchema $action) {
19 18
 		$class = PhpClass::create($action->getClass())
Please login to merge, or discard this patch.
src/generator/responder/AbstractModelJsonResponderGenerator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -32,6 +32,10 @@
 block discarded – undo
32 32
 		);
33 33
 	}
34 34
 	
35
+	/**
36
+	 * @param string $name
37
+	 * @param string $body
38
+	 */
35 39
 	protected function generatePayloadMethod($name, $body) {
36 40
 		return PhpMethod::create($name)
37 41
 			->addParameter(PhpParameter::create('request')
Please login to merge, or discard this patch.