Completed
Push — master ( f1c264...f58245 )
by Thomas
04:22
created
src/services/CodeGeneratorService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 * Adds authors to the docblock of the given struct
63 63
 	 *
64 64
 	 * @param AbstractPhpStruct $struct
65
-	 * @param array $package
65
+	 * @param PackageSchema $package
66 66
 	 */
67 67
 	public function addAuthors(AbstractPhpStruct $struct, PackageSchema $package) {
68 68
 		$docblock = $struct->getDocblock();
Please login to merge, or discard this patch.
src/generator/responder/AbstractPayloadJsonResponderGenerator.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.
src/generator/domain/SkeletonDomainGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 	/**
7 7
 	 * Add default blank methods
8 8
 	 * 
9
-	 * @param string $classname
9
+	 * @param string $className
10 10
 	 */
11 11
 	public function generate($className) {
12 12
 		$class = $this->generateClass($className);
Please login to merge, or discard this patch.
src/generator/responder/ApiJsonResponderGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 
9 9
 	protected $serializer;
10 10
 
11
+	/**
12
+	 * @param string $serializer
13
+	 */
11 14
 	public function setSerializer($serializer) {
12 15
 		$this->serializer = $serializer;
13 16
 	}
Please login to merge, or discard this patch.