Completed
Push — master ( e39348...661346 )
by Martijn
02:36
created
SwaggerGen/Swagger/Parameter.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,13 +61,17 @@
 block discarded – undo
61 61
 
62 62
 	/**
63 63
 	 * Return true if the parameter is of type 'formData'
64
-	 * @return type
64
+	 * @return boolean
65 65
 	 */
66 66
 	public function isForm()
67 67
 	{
68 68
 		return $this->in === 'form';
69 69
 	}
70 70
 
71
+	/**
72
+	 * @param string $in
73
+	 * @param string|null $data
74
+	 */
71 75
 	public function __construct(AbstractObject $parent, $in, $data, $required = false)
72 76
 	{
73 77
 		parent::__construct($parent);
Please login to merge, or discard this patch.