Completed
Push — master ( 0ef921...49b538 )
by Martijn
03:08
created
SwaggerGen/Swagger/Swagger.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,8 @@
 block discarded – undo
169 169
 					$this->Tags[] = $Tag;
170 170
 				}
171 171
 
172
-				if ($command === 'api') { // backwards compatibility
172
+				if ($command === 'api') {
173
+// backwards compatibility
173 174
 					$this->defaultTag = $Tag;
174 175
 				}
175 176
 				return $Tag;
Please login to merge, or discard this patch.
SwaggerGen/StatementException.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,8 @@
 block discarded – undo
32 32
 		parent::__construct($message, $code, $previous);
33 33
 	}
34 34
 	
35
-	public function getStatement() {
35
+	public function getStatement()
36
+	{
36 37
 		return $this->statement;
37 38
 	}
38 39
 
Please login to merge, or discard this patch.
SwaggerGen/Parser/Php/Parser.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -342,7 +342,7 @@
 block discarded – undo
342 342
 
343 343
 		$match = null;
344 344
 		foreach ($Statements as $Statement) {
345
-			if (in_array($Statement->getCommand(), array('uses', 'see'))) { 
345
+			if (in_array($Statement->getCommand(), array('uses', 'see'))) {
346 346
 				if (preg_match('/^((?:\\w+)|\$this)(?:(::|->)(\\w+))?(?:\\(\\))?$/', strtolower($Statement->getData()), $match) === 1) {
347 347
 					if (count($match) >= 3) {
348 348
 						$Class = null;
Please login to merge, or discard this patch.