Skip to content

Commit

Permalink
Merge pull request #339 from 8p/fix_deprecations
Browse files Browse the repository at this point in the history
Fix deprecations (return void)
  • Loading branch information
gregurco committed Dec 4, 2023
2 parents 3e936c5 + 47750dd commit 71efd77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract protected function doCollect(Request $request, Response $response, \Thr
*
* @return void
*/
public function collect(Request $request, Response $response, \Throwable $exception = null)
public function collect(Request $request, Response $response, \Throwable $exception = null): void
{
$this->doCollect($request, $response, $exception);
}
Expand Down
2 changes: 1 addition & 1 deletion src/EightPointsGuzzleBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function getContainerExtension() : ExtensionInterface
*
* @return void
*/
public function boot()
public function boot(): void
{
foreach ($this->plugins as $plugin) {
$plugin->boot();
Expand Down

0 comments on commit 71efd77

Please sign in to comment.