8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2b084 commit 53266c9Copy full SHA for 53266c9
Client.php
@@ -361,7 +361,8 @@ protected function doRequestInProcess($request)
361
unlink($deprecationsFile);
362
foreach ($deprecations ? unserialize($deprecations) : [] as $deprecation) {
363
if ($deprecation[0]) {
364
- @trigger_error($deprecation[1], E_USER_DEPRECATED);
+ // unsilenced on purpose
365
+ trigger_error($deprecation[1], E_USER_DEPRECATED);
366
} else {
367
@trigger_error($deprecation[1], E_USER_DEPRECATED);
368
}
0 commit comments