Skip to content

Commit

Permalink
Add codeCoverageIgnore annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
buchmarv committed Oct 7, 2024
1 parent 394b4c1 commit e1bfd2b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Exception/NoTokenException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

namespace T3G\Bundle\Keycloak\Exception;

/**
* @codeCoverageIgnore
*/
class NoTokenException extends \Exception
{
}
3 changes: 3 additions & 0 deletions src/Security/KeyCloakUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

use Symfony\Component\Security\Core\User\UserInterface;

/**
* @codeCoverageIgnore
*/
class KeyCloakUser implements UserInterface
{
private string $identifier;
Expand Down
3 changes: 3 additions & 0 deletions src/T3GKeycloakBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
use Symfony\Component\HttpKernel\Bundle\Bundle;
use T3G\Bundle\Keycloak\DependencyInjection\T3GKeycloakExtension;

/**
* @codeCoverageIgnore
*/
final class T3GKeycloakBundle extends Bundle
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Validator/Name.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@

use Symfony\Component\Validator\Constraint;

/**
* @codeCoverageIgnore
*/
#[\Attribute]
class Name extends Constraint
{
Expand Down

0 comments on commit e1bfd2b

Please sign in to comment.