Completed
Push — master ( dd4e5e...557dd8 )
by Thomas
03:57
created
src/Path.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 class Path extends AbstractModel implements Arrayable {
12 12
 
13
-    use ParametersPart;
13
+	use ParametersPart;
14 14
 	use ExtensionPart;
15 15
 
16 16
 	private $operations;
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
 			}
34 34
 		}
35 35
 
36
-        // parts
37
-        $this->parseParameters($data);
38
-        $this->parseExtensions($data);
36
+		// parts
37
+		$this->parseParameters($data);
38
+		$this->parseExtensions($data);
39 39
 	}
40 40
 
41 41
 	public function toArray() {
Please login to merge, or discard this patch.
src/collections/Definitions.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
 	 * Sets the field
51 51
 	 *
52 52
 	 * @param string name
53
-	 * @param Schema $schame
54 53
 	 */
55 54
 	public function set($name, Schema $schema) {
56 55
 		$this->definitions->set($name, $schema);
Please login to merge, or discard this patch.
src/collections/Parameters.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,6 @@
 block discarded – undo
92 92
 	 * Searches whether a parameter with the given unique combination exists
93 93
 	 *
94 94
 	 * @param string $name
95
-	 * @param string $id
96 95
 	 * @return bool
97 96
 	 */
98 97
 	public function search($name, $in) {
Please login to merge, or discard this patch.
src/collections/Responses.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,6 @@
 block discarded – undo
83 83
 	/**
84 84
 	 * Sets the response
85 85
 	 *
86
-	 * @param Response $code
87 86
 	 */
88 87
 	public function add(Response $response) {
89 88
 		$this->responses->set($response->getCode(), $response);
Please login to merge, or discard this patch.
src/collections/SecurityDefinitions.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,6 @@
 block discarded – undo
81 81
 	/**
82 82
 	 * Adds all schemes from another definitions collection. Will overwrite existing operations.
83 83
 	 *
84
-	 * @param SecurityDefinitions $schemes
85 84
 	 */
86 85
 	public function addAll(SecurityDefinitions $definitions) {
87 86
 		foreach ($definitions as $scheme) {
Please login to merge, or discard this patch.