Passed
Pull Request — master (#175)
by
unknown
08:32
created
Classes/Domain/Model/DocumentFormField.php 1 patch
Braces   +16 added lines, -32 removed lines patch added patch discarded remove patch
@@ -14,8 +14,7 @@  discard block
 block discarded – undo
14 14
  * The TYPO3 project - inspiring people to share!
15 15
  */
16 16
 
17
-class DocumentFormField extends AbstractFormElement
18
-{
17
+class DocumentFormField extends AbstractFormElement {
19 18
 
20 19
     protected $value;
21 20
 
@@ -55,13 +54,11 @@  discard block
 block discarded – undo
55 54
      */
56 55
     protected $maxInputLength;
57 56
 
58
-    public function getValue()
59
-    {
57
+    public function getValue() {
60 58
         return $this->value;
61 59
     }
62 60
 
63
-    public function setValue($value, $defaultValue = '')
64
-    {
61
+    public function setValue($value, $defaultValue = '') {
65 62
 
66 63
         $this->hasDefaultValue = !empty($defaultValue);
67 64
 
@@ -92,13 +89,11 @@  discard block
 block discarded – undo
92 89
         }
93 90
     }
94 91
 
95
-    public function getInputField()
96
-    {
92
+    public function getInputField() {
97 93
         return $this->inputField;
98 94
     }
99 95
 
100
-    public function setInputField($inputField)
101
-    {
96
+    public function setInputField($inputField) {
102 97
         $this->inputField = $inputField;
103 98
     }
104 99
 
@@ -106,8 +101,7 @@  discard block
 block discarded – undo
106 101
      *
107 102
      * @return array
108 103
      */
109
-    public function getInputOptions()
110
-    {
104
+    public function getInputOptions() {
111 105
         return $this->inputOptions;
112 106
     }
113 107
 
@@ -115,8 +109,7 @@  discard block
 block discarded – undo
115 109
      *
116 110
      * @param \EWW\Dpf\Domain\Model\InputOptionList $inputOptionList
117 111
      */
118
-    public function setInputOptions(\EWW\Dpf\Domain\Model\InputOptionList $inputOptionList = null)
119
-    {
112
+    public function setInputOptions(\EWW\Dpf\Domain\Model\InputOptionList $inputOptionList = null) {
120 113
 
121 114
         $this->inputOptions = array();
122 115
 
@@ -136,8 +129,7 @@  discard block
 block discarded – undo
136 129
      *
137 130
      * @return string $fillOutService
138 131
      */
139
-    public function getFillOutService()
140
-    {
132
+    public function getFillOutService() {
141 133
         return $this->fillOutService;
142 134
     }
143 135
 
@@ -147,8 +139,7 @@  discard block
 block discarded – undo
147 139
      * @param string $fillOutService
148 140
      * @return void
149 141
      */
150
-    public function setFillOutService($fillOutService)
151
-    {
142
+    public function setFillOutService($fillOutService) {
152 143
         $this->fillOutService = $fillOutService;
153 144
     }
154 145
 
@@ -157,8 +148,7 @@  discard block
 block discarded – undo
157 148
      *
158 149
      * @return boolean $consent
159 150
      */
160
-    public function getConsent()
161
-    {
151
+    public function getConsent() {
162 152
         return $this->consent;
163 153
     }
164 154
 
@@ -168,23 +158,19 @@  discard block
 block discarded – undo
168 158
      * @param boolean $consent
169 159
      * @return void
170 160
      */
171
-    public function setConsent($consent)
172
-    {
161
+    public function setConsent($consent) {
173 162
         $this->consent = $consent;
174 163
     }
175 164
 
176
-    public function getHasDefaultValue()
177
-    {
165
+    public function getHasDefaultValue() {
178 166
         return $this->hasDefaultValue;
179 167
     }
180 168
 
181
-    public function getValidation()
182
-    {
169
+    public function getValidation() {
183 170
         return $this->validation;
184 171
     }
185 172
 
186
-    public function setValidation($validation)
187
-    {
173
+    public function setValidation($validation) {
188 174
         $this->validation = $validation;
189 175
     }
190 176
 
@@ -193,8 +179,7 @@  discard block
 block discarded – undo
193 179
      *
194 180
      * @return string
195 181
      */
196
-    public function getDataType()
197
-    {
182
+    public function getDataType() {
198 183
         return $this->dataType;
199 184
     }
200 185
 
@@ -204,8 +189,7 @@  discard block
 block discarded – undo
204 189
      * @param string $dataType
205 190
      * @return void
206 191
      */
207
-    public function setDataType($dataType)
208
-    {
192
+    public function setDataType($dataType) {
209 193
         $this->dataType = $dataType;
210 194
     }
211 195
 
Please login to merge, or discard this patch.