8000 Merge branch '4.2' into 4.3 · symfony/browser-kit@a29dd02 · GitHub
[go: up one dir, main page]

Skip to content

Commit a29dd02

Browse files
Merge branch '4.2' into 4.3
* 4.2: [WebProfilerBundle] fix FC with HttpFoundation v5 [OptionsResolver] fix adding $triggerDeprecation to Options::offsetGet() [Form] test case is not legacy Fix reporting unsilenced deprecations from insulated tests Added FormInterface to @return Form::getClickedButton docblock
2 parents e07d50e + 3659f10 commit a29dd02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Client.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,8 @@ protected function doRequestInProcess($request)
459459
unlink($deprecationsFile);
460460
foreach ($deprecations ? unserialize($deprecations) : [] as $deprecation) {
461461
if ($deprecation[0]) {
462-
@trigger_error($deprecation[1], E_USER_DEPRECATED);
462+
// unsilenced on purpose
463+
trigger_error($deprecation[1], E_USER_DEPRECATED);
463464
} else {
464465
@trigger_error($deprecation[1], E_USER_DEPRECATED);
465466
}

0 commit comments

Comments
 (0)
0