Skip to content

Commit aa80cca

Browse files
committed
[Form] Rename FormConfigBuilder::$nativeRequestProcessor private variable to ::$nativeRequestHandler
1 parent 4c5d9cf commit aa80cca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Symfony/Component/Form/FormConfigBuilder.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class FormConfigBuilder implements FormConfigBuilderInterface
3232
*
3333
* @var NativeRequestHandler
3434
*/
35-
private static $nativeRequestProcessor;
35+
private static $nativeRequestHandler;
3636

3737
/**
3838
* The accepted request methods.
@@ -511,10 +511,10 @@ public function getMethod()
511511
public function getRequestHandler()
512512
{
513513
if (null === $this->requestHandler) {
514-
if (null === self::$nativeRequestProcessor) {
515-
self::$nativeRequestProcessor = new NativeRequestHandler();
514+
if (null === self::$nativeRequestHandler) {
515+
self::$nativeRequestHandler = new NativeRequestHandler();
516516
}
517-
$this->requestHandler = self::$nativeRequestProcessor;
517+
$this->requestHandler = self::$nativeRequestHandler;
518518
}
519519

520520
return $this->requestHandler;

0 commit comments

Comments
 (0)