Completed
Push — master ( 49b538...d2ad01 )
by Martijn
02:37
created
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.