From d100d60a205cbfc85f63c2c4310f9081316115ff Mon Sep 17 00:00:00 2001 From: Paul Grigoruta Date: Tue, 5 May 2020 08:33:16 +0300 Subject: [PATCH] Remove typehint to preserver compatibiliy with older versions of Symfony --- src/DataCollector/Delivery/ClientDataCollector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataCollector/Delivery/ClientDataCollector.php b/src/DataCollector/Delivery/ClientDataCollector.php index 36bdd10..d30b3d3 100644 --- a/src/DataCollector/Delivery/ClientDataCollector.php +++ b/src/DataCollector/Delivery/ClientDataCollector.php @@ -49,7 +49,7 @@ public function __construct($clients = [], $configurations = []) /** * {@inheritdoc} */ - public function collect(Request $request, Response $response, \Throwable $exception = \null) + public function collect(Request $request, Response $response, $exception = \null) { $messages = []; foreach ($this->clients as $client) {