File tree 1 file changed +4
-4
lines changed
src/Symfony/Component/Form
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class FormConfigBuilder implements FormConfigBuilderInterface
32
32
*
33
33
* @var NativeRequestHandler
34
34
*/
35
- private static $ nativeRequestProcessor ;
35
+ private static $ nativeRequestHandler ;
36
36
37
37
/**
38
38
* The accepted request methods.
@@ -511,10 +511,10 @@ public function getMethod()
511
511
public function getRequestHandler ()
512
512
{
513
513
if (null === $ this ->requestHandler ) {
514
- if (null === self ::$ nativeRequestProcessor ) {
515
- self ::$ nativeRequestProcessor = new NativeRequestHandler ();
514
+ if (null === self ::$ nativeRequestHandler ) {
515
+ self ::$ nativeRequestHandler = new NativeRequestHandler ();
516
516
}
517
- $ this ->requestHandler = self ::$ nativeRequestProcessor ;
517
+ $ this ->requestHandler = self ::$ nativeRequestHandler ;
518
518
}
519
519
520
520
return $ this ->requestHandler ;
You can’t perform that action at this time.
0 commit comments