Skip to content

Commit

Permalink
Autofix code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jul 13, 2022
1 parent d74e6b0 commit 0e4d433
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Configuration/Symfony.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

use EcPhp\CasLib\Configuration\Properties as PsrCasConfiguration;
use EcPhp\CasLib\Configuration\PropertiesInterface;
use ReturnTypeWillChange;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Routing\RouterInterface;

use Symfony\Component\Routing\RouterInterface;
use const FILTER_VALIDATE_URL;

/**
Expand Down Expand Up @@ -54,7 +55,7 @@ public function all(): array
*
* @return bool
*/
#[\ReturnTypeWillChange]
#[ReturnTypeWillChange]
public function offsetExists($offset)
{
return $this->cas->offsetExists($offset);
Expand All @@ -65,7 +66,7 @@ public function offsetExists($offset)
*
* @return array<string, mixed>|mixed
*/
#[\ReturnTypeWillChange]
#[ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->cas->offsetGet($offset);
Expand Down

0 comments on commit 0e4d433

Please sign in to comment.