bug #23705 [Form] Add notice to upgrade to PHP v7.0.8+ (nicolas-grekas)

This PR was merged into the 3.3 branch.

Discussion
----------

[Form] Add notice to upgrade to PHP v7.0.8+

| Q             | A
| ------------- | ---
| Branch?       | 3.3
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #22973
| License       | MIT
| Doc PR        | -

So that PHP7 < 7.0.8 users get a notice about the issue.

Commits
-------

0347e5a5d3 [Form] Add notice to upgrade to PHP v7.0.8+
This commit is contained in:
Fabien Potencier 2017-07-28 20:27:28 +02:00
commit 84f4fb6e60

View File

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