Completed
Push — master ( 8b636b...7c2d20 )
by Martijn
13s
created
SwaggerGen/Swagger/Swagger.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -142,9 +142,9 @@  discard block
 block discarded – undo
142 142
 				return $this;
143 143
 
144 144
 			case 'model':
145
-            case 'model!':
145
+			case 'model!':
146 146
 			case 'definition':
147
-            case 'definition!':
147
+			case 'definition!':
148 148
 				$name = self::wordShift($data);
149 149
 				if (empty($name)) {
150 150
 					throw new \SwaggerGen\Exception('Missing definition name');
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
 
157 157
 				$definition = new Schema($this, $typeDef);
158 158
 				if(substr($command, -1) === '!') {
159
-				    $definition->setReadOnly();
160
-                }
159
+					$definition->setReadOnly();
160
+				}
161 161
 				$this->definitions[$name] = $definition;
162 162
 				return $definition;
163 163
 
Please login to merge, or discard this patch.
SwaggerGen/Swagger/Type/ObjectType.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -104,13 +104,13 @@  discard block
 block discarded – undo
104 104
 	{
105 105
 		if (!empty($this->discriminator)) {
106 106
 			throw new \SwaggerGen\Exception("Discriminator may only be set once, "
107
-			                                . "trying to change it "
108
-			                                . "from '{$this->discriminator}' "
109
-			                                . "to '{$discriminator}'");
107
+											. "trying to change it "
108
+											. "from '{$this->discriminator}' "
109
+											. "to '{$discriminator}'");
110 110
 		}
111 111
 		if (isset($this->properties[$discriminator]) && empty($this->required[$discriminator])) {
112 112
 			throw new \SwaggerGen\Exception("Discriminator must be a required property, "
113
-			                                . "property '{$discriminator}' is not required");
113
+											. "property '{$discriminator}' is not required");
114 114
 		}
115 115
 		$this->discriminator = $discriminator;
116 116
 	}
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
 				if (($name === $this->discriminator) && !$required) {
154 154
 					throw new \SwaggerGen\Exception("Discriminator must be a required property, "
155
-					                                . "property '{$name}' is not required");
155
+													. "property '{$name}' is not required");
156 156
 				}
157 157
 
158 158
 				unset($this->required[$name]);
Please login to merge, or discard this patch.