Skip to content

Commit 3243682

Browse files
authored
Merge pull request #592 from XWB/s63-deprecations
Fix symfony 6.3 return type deprecations
2 parents cdee9b9 + ef83737 commit 3243682

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Command/ClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ClearCommand extends BaseInvalidateCommand
2929
/**
3030
* {@inheritdoc}
3131
*/
32-
protected function configure()
32+
protected function configure(): void
3333
{
3434
$this
3535
->setName('fos:httpcache:clear')

src/Command/InvalidatePathCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct(CacheManager $cacheManager = null)
4646
/**
4747
* {@inheritdoc}
4848
*/
49-
protected function configure()
49+
protected function configure(): void
5050
{
5151
$this
5252
->setName('fos:httpcache:invalidate:path')

src/Command/InvalidateRegexCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct(CacheManager $cacheManager = null, $commandName = 'f
4545
/**
4646
* {@inheritdoc}
4747
*/
48-
protected function configure()
48+
protected function configure(): void
4949
{
5050
$this
5151
->setName('fos:httpcache:invalidate:regex')

src/Command/InvalidateTagCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function __construct(CacheManager $cacheManager = null, $commandName = 'f
4444
/**
4545
* {@inheritdoc}
4646
*/
47-
protected function configure()
47+
protected function configure(): void
4848
{
4949
$this
5050
->setName('fos:httpcache:invalidate:tag')

src/Command/RefreshPathCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct(CacheManager $cacheManager = null)
4646
/**
4747
* {@inheritdoc}
4848
*/
49-
protected function configure()
49+
protected function configure(): void
5050
{
5151
$this
5252
->setName('fos:httpcache:refresh:path')

0 commit comments

Comments
 (0)