Skip to content

Commit de47f4b

Browse files
Merge branch '3.4'
* 3.4: [Bridge/ProxyManager] Relax test to allow protected factories on master fixed CS Remove unused constant fix merge [Form] Add notice to upgrade to PHP v7.0.8+ Fix passing options with defaultCommand
2 parents cab6582 + 8ef9700 commit de47f4b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Extension/DataCollector/FormDataCollector.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ public function __construct(FormDataExtractorInterface $dataExtractor)
8686
*/
8787
public function collect(Request $request, Response $response, \Exception $exception = null)
8888
{
89+
if (70000 <= \PHP_VERSION_ID && \PHP_VERSION_ID < 70800) {
90+
@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);
91+
}
8992
}
9093

9194
/**

0 commit comments

Comments
 (0)