Skip to content

Commit 71efd77

Browse files
authored
Merge pull request #339 from 8p/fix_deprecations
Fix deprecations (return void)
2 parents 3e936c5 + 47750dd commit 71efd77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DataCollector/DataCollectorSymfonyCompatibilityTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ abstract protected function doCollect(Request $request, Response $response, \Thr
1616
*
1717
* @return void
1818
*/
19-
public function collect(Request $request, Response $response, \Throwable $exception = null)
19+
public function collect(Request $request, Response $response, \Throwable $exception = null): void
2020
{
2121
$this->doCollect($request, $response, $exception);
2222
}

src/EightPointsGuzzleBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getContainerExtension() : ExtensionInterface
6060
*
6161
* @return void
6262
*/
63-
public function boot()
63+
public function boot(): void
6464
{
6565
foreach ($this->plugins as $plugin) {
6666
$plugin->boot();

0 commit comments

Comments
 (0)