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 049e80e commit 54d9a3dCopy full SHA for 54d9a3d
1 file changed
src/Connector/FetchExceptionHandler/StatelessFetchExceptionHandler.php
@@ -4,7 +4,7 @@
4
/**
5
* Contains a fetch exception handler that does not have private state and therefore does not require initialization.
6
*/
7
-final class StatelessFetchExceptionHandler implements FetchExceptionHandler
+class StatelessFetchExceptionHandler implements FetchExceptionHandler
8
{
9
private $handler;
10
@@ -13,12 +13,12 @@ public function __construct(callable $handler)
13
$this->handler = $handler;
14
}
15
16
- public function initialize()
+ final public function initialize()
17
18
// Intentionally empty.
19
20
21
- public function __invoke(\Exception $exception)
+ final public function __invoke(\Exception $exception)
22
23
call_user_func($this->handler, $exception);
24
0 commit comments