Completed
Pull Request — master (#13)
by
unknown
03:01
created
SwaggerGen/Swagger/Type/Property.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 		$format = strtolower($match[1]);
81 81
 		if (isset(self::$classTypes[$format])) {
82 82
 			$type = self::$classTypes[$format];
83
-			$class = "SwaggerGen\\Swagger\\Type\\{$type}Type";
83
+			$class = "SwaggerGen\\Swagger\\Type\\{$type}type";
84 84
 			$this->Type = new $class($this, $definition);
85 85
 		} else {
86 86
 			$this->Type = new \SwaggerGen\Swagger\Type\ReferenceObjectType($this, $definition);
Please login to merge, or discard this patch.