@@ -28,7 +28,7 @@ interface FormConfigBuilderInterface extends FormConfigInterface
28
28
* with a higher priority are called before
29
29
* listeners with a lower priority.
30
30
*
31
- * @return self The configuration object
31
+ * @return $this The configuration object
32
32
*/
33
33
public function addEventListener ($ eventName , $ listener , $ priority = 0 );
34
34
@@ -37,7 +37,7 @@ public function addEventListener($eventName, $listener, $priority = 0);
37
37
*
38
38
* @param EventSubscriberInterface $subscriber The subscriber to attach
39
39
*
40
- * @return self The configuration object
40
+ * @return $this The configuration object
41
41
*/
42
42
public function addEventSubscriber (EventSubscriberInterface $ subscriber );
43
43
@@ -52,14 +52,14 @@ public function addEventSubscriber(EventSubscriberInterface $subscriber);
52
52
* @param DataTransformerInterface $viewTransformer
53
53
* @param bool $forcePrepend if set to true, prepend instead of appending
54
54
*
55
- * @return self The configuration object
55
+ * @return $this The configuration object
56
56
*/
57
57
public function addViewTransformer (DataTransformerInterface $ viewTransformer , $ forcePrepend = false );
58
58
59
59
/**
60
60
* Clears the view transformers.
61
61
*
62
- * @return self The configuration object
62
+ * @return $this The configuration object
63
63
*/
64
64
public function resetViewTransformers ();
65
65
@@ -74,14 +74,14 @@ public function resetViewTransformers();
74
74
* @param DataTransformerInterface $modelTransformer
75
75
* @param bool $forceAppend if set to true, append instead of prepending
76
76
*
77
- * @return self The configuration object
77
+ * @return $this The configuration object
78
78
*/
79
79
public function addModelTransformer (DataTransformerInterface $ modelTransformer , $ forceAppend = false );
80
80
81
81
/**
82
82
* Clears the normalization transformers.
83
83
*
84
- * @return self The configuration object
84
+ * @return $this The configuration object
85
85
*/
86
86
public function resetModelTransformers ();
87
87
@@ -91,7 +91,7 @@ public function resetModelTransformers();
91
91
* @param string $name The name of the attribute
92
92
* @param mixed $value The value of the attribute
93
93
*
94
- * @return self The configuration object
94
+ * @return $this The configuration object
95
95
*/
96
96
public function setAttribute ($ name , $ value );
97
97
@@ -100,7 +100,7 @@ public function setAttribute($name, $value);
100
100
*
101
101
* @param array $attributes The attributes
102
102
*
103
- * @return self The configuration object
103
+ * @return $this The configuration object
104
104
*/
105
105
public function setAttributes (array $ attributes );
106
106
@@ -109,7 +109,7 @@ public function setAttributes(array $attributes);
109
109
*
110
110
* @param DataMapperInterface $dataMapper
111
111
*
112
- * @return self The configuration object
112
+ * @return $this The configuration object
113
113
*/
114
114
public function setDataMapper (DataMapperInterface $ dataMapper = null );
115
115
@@ -118,7 +118,7 @@ public function setDataMapper(DataMapperInterface $dataMapper = null);
118
118
*
119
119
* @param bool $disabled Whether the form is disabled
120
120
*
121
- * @return self The configuration object
121
+ * @return $this The configuration object
122
122
*/
123
123
public function setDisabled ($ disabled );
124
124
@@ -127,7 +127,7 @@ public function setDisabled($disabled);
127
127
*
128
128
* @param mixed $emptyData The empty data
129
129
*
130
- * @return self The configuration object
130
+ * @return $this The configuration object
131
131
*/
132
132
public function setEmptyData ($ emptyData );
133
133
@@ -136,7 +136,7 @@ public function setEmptyData($emptyData);
136
136
*
137
137
* @param bool $errorBubbling
138
138
*
139
- * @return self The configuration object
139
+ * @return $this The configuration object
140
140
*/
141
141
public function setErrorBubbling ($ errorBubbling );
142
142
@@ -145,7 +145,7 @@ public function setErrorBubbling($errorBubbling);
145
145
*
146
146
* @param bool $required
147
147
*
148
- * @return self The configuration object
148
+ * @return $this The configuration object
149
149
*/
150
150
public function setRequired ($ required );
151
151
@@ -156,7 +156,7 @@ public function setRequired($required);
156
156
* The property path or null if the path should be set
157
157
* automatically based on the form's name.
158
158
*
159
- * @return self The configuration object
159
+ * @return $this The configuration object
160
160
*/
161
161
public function setPropertyPath ($ propertyPath );
162
162
@@ -166,7 +166,7 @@ public function setPropertyPath($propertyPath);
166
166
*
167
167
* @param bool $mapped Whether the form should be mapped
168
168
*
169
- * @return self The configuration object
169
+ * @return $this The configuration object
170
170
*/
171
171
public function setMapped ($ mapped );
172
172
@@ -176,7 +176,7 @@ public function setMapped($mapped);
176
176
* @param bool $byReference Whether the data should be
177
177
* modified by reference.
178
178
*
179
- * @return self The configuration object
179
+ * @return $this The configuration object
180
180
*/
181
181
public function setByReference ($ byReference );
182
182
@@ -185,7 +185,7 @@ public function setByReference($byReference);
185
185
*
186
186
* @param bool $inheritData Whether the form should inherit its parent's data
187
187
*
188
- * @return self The configuration object
188
+ * @return $this The configuration object
189
189
*/
190
190
public function setInheritData ($ inheritData );
191
191
@@ -194,7 +194,7 @@ public function setInheritData($inheritData);
194
194
*
195
195
* @param bool $compound Whether the form should be compound
196
196
*
197
- * @return self The configuration object
197
+ * @return $this The configuration object
198
198
*
199
199
* @see FormConfigInterface::getCompound()
200
200
*/
@@ -205,7 +205,7 @@ public function setCompound($compound);
205
205
*
206
206
* @param ResolvedFormTypeInterface $type The type of the form
207
207
*
208
- * @return self The configuration object
208
+ * @return $this The configuration object
209
209
*/
210
210
public function setType (ResolvedFormTypeInterface $ type );
211
211
@@ -214,7 +214,7 @@ public function setType(ResolvedFormTypeInterface $type);
214
214
*
215
215
* @param mixed $data The data of the form in application format
216
216
*
217
- * @return self The configuration object
217
+ * @return $this The configuration object
218
218
*/
219
219
public function setData ($ data );
220
220
@@ -227,7 +227,7 @@ public function setData($data);
227
227
*
228
228
* @param bool $locked Whether to lock the default data
229
229
*
230
- * @return self The configuration object
230
+ * @return $this The configuration object
231
231
*/
232
232
public function setDataLocked ($ locked );
233
233
@@ -243,7 +243,7 @@ public function setFormFactory(FormFactoryInterface $formFactory);
243
243
*
244
244
* @param string $action The target URL of the form
245
245
*
246
- * @return self The configuration object
246
+ * @return $this The configuration object
247
247
*/
248
248
public function setAction ($ action );
249
249
@@ -252,7 +252,7 @@ public function setAction($action);
252
252
*
253
253
* @param string $method The HTTP method of the form
254
254
*
255
- * @return self The configuration object
255
+ * @return $this The configuration object
256
256
*/
257
257
public function setMethod ($ method );
258
258
@@ -261,7 +261,7 @@ public function setMethod($method);
261
261
*
262
262
* @param RequestHandlerInterface $requestHandler
263
263
*
264
- * @return self The configuration object
264
+ * @return $this The configuration object
265
265
*/
266
266
public function setRequestHandler (RequestHandlerInterface $ requestHandler );
267
267
@@ -275,7 +275,7 @@ public function setRequestHandler(RequestHandlerInterface $requestHandler);
275
275
* In the second case, you need to call
276
276
* {@link FormInterface::initialize()} manually.
277
277
*
278
- * @return self The configuration object
278
+ * @return $this The configuration object
279
279
*/
280
280
public function setAutoInitialize ($ initialize );
281
281
0 commit comments