Completed
Push — master ( 697c7e...a29264 )
by Martijn
03:19
created
SwaggerGen/Swagger/Type/Property.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
 	 */
49 49
 	private $description;
50 50
 
51
-    /**
52
-     * Whether property is read only
53
-     * @var bool
54
-     */
51
+	/**
52
+	 * Whether property is read only
53
+	 * @var bool
54
+	 */
55 55
 	private $readOnly;
56 56
 
57 57
 	/**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	 * @param \SwaggerGen\Swagger\AbstractObject $parent
66 66
 	 * @param string $definition Either a built-in type or a definition name
67 67
 	 * @param string $description description of the property
68
-     * @param bool $readOnly Whether the property is read only
68
+	 * @param bool $readOnly Whether the property is read only
69 69
 	 * @throws \SwaggerGen\Exception
70 70
 	 */
71 71
 	public function __construct(\SwaggerGen\Swagger\AbstractObject $parent, $definition, $description = null, $readOnly = null)
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
 		return self::arrayFilterNull(array_merge($valueType, array(
132 132
 					'description' => empty($this->description) ? null : $this->description,
133
-                    'readOnly' => $this->readOnly
133
+					'readOnly' => $this->readOnly
134 134
 								), parent::toArray()));
135 135
 	}
136 136
 
Please login to merge, or discard this patch.