Skip to content

Commit

Permalink
Merge pull request #592 from XWB/s63-deprecations
Browse files Browse the repository at this point in the history
Fix symfony 6.3 return type deprecations
  • Loading branch information
dbu committed Jun 15, 2023
2 parents cdee9b9 + ef83737 commit 3243682
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Command/ClearCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ClearCommand extends BaseInvalidateCommand
/**
* {@inheritdoc}
*/
protected function configure()
protected function configure(): void
{
$this
->setName('fos:httpcache:clear')
Expand Down
2 changes: 1 addition & 1 deletion src/Command/InvalidatePathCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function __construct(CacheManager $cacheManager = null)
/**
* {@inheritdoc}
*/
protected function configure()
protected function configure(): void
{
$this
->setName('fos:httpcache:invalidate:path')
Expand Down
2 changes: 1 addition & 1 deletion src/Command/InvalidateRegexCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(CacheManager $cacheManager = null, $commandName = 'f
/**
* {@inheritdoc}
*/
protected function configure()
protected function configure(): void
{
$this
->setName('fos:httpcache:invalidate:regex')
Expand Down
2 changes: 1 addition & 1 deletion src/Command/InvalidateTagCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(CacheManager $cacheManager = null, $commandName = 'f
/**
* {@inheritdoc}
*/
protected function configure()
protected function configure(): void
{
$this
->setName('fos:httpcache:invalidate:tag')
Expand Down
2 changes: 1 addition & 1 deletion src/Command/RefreshPathCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function __construct(CacheManager $cacheManager = null)
/**
* {@inheritdoc}
*/
protected function configure()
protected function configure(): void
{
$this
->setName('fos:httpcache:refresh:path')
Expand Down

0 comments on commit 3243682

Please sign in to comment.