Merge branch '3.3' into 3.4

* 3.3:
  fix typo
This commit is contained in:
Nicolas Grekas 2017-07-29 23:53:22 +02:00
commit c36262eb1f

View File

@ -85,7 +85,7 @@ class FormDataCollector extends DataCollector implements FormDataCollectorInterf
*/ */
public function collect(Request $request, Response $response, \Exception $exception = null) public function collect(Request $request, Response $response, \Exception $exception = null)
{ {
if (70000 <= \PHP_VERSION_ID && \PHP_VERSION_ID < 70800) { if (70000 <= \PHP_VERSION_ID && \PHP_VERSION_ID < 70008) {
@trigger_error('A bug in PHP 7.0.0 to 7.0.7 is breaking the Form panel, please upgrade to 7.0.8 or higher.', E_USER_DEPRECATED); @trigger_error('A bug in PHP 7.0.0 to 7.0.7 is breaking the Form panel, please upgrade to 7.0.8 or higher.', E_USER_DEPRECATED);
} }
} }