Skip to content

Commit

Permalink
chore: autofix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Oct 8, 2024
1 parent ed3a268 commit a89cd70
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/EcPhp/Ecas/CasHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;

use function sprintf;

class CasHelper
{
public static function getHttpClientMock(): HttpClientInterface
Expand Down
1 change: 1 addition & 0 deletions src/EcasProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

use function array_key_exists;
use function is_string;
use function sprintf;

final class EcasProperties implements PropertiesInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Exception/EcasHandlerException.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
use EcPhp\Ecas\Contract\Response\Type\LoginRequestFailure;
use Exception;

use function sprintf;

final class EcasHandlerException extends Exception implements CasExceptionInterface
{
public static function badResponseAttribute(): self
Expand Down
2 changes: 2 additions & 0 deletions src/Handler/LoginTransaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
use Psr\Http\Server\RequestHandlerInterface;
use Throwable;

use function sprintf;

final class LoginTransaction implements RequestHandlerInterface
{
public function __construct(
Expand Down

0 comments on commit a89cd70

Please sign in to comment.