Skip to content

Commit

Permalink
Change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed May 3, 2024
1 parent 4c9edf7 commit b7d4013
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion src/Authenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth;

use Intervention\HttpAuth\Exception\NotSupportedException;
use Intervention\HttpAuth\Exceptions\NotSupportedException;
use Intervention\HttpAuth\Interfaces\VaultInterface;
use Intervention\HttpAuth\Vault\BasicVault;
use Intervention\HttpAuth\Vault\DigestVault;
Expand Down
2 changes: 1 addition & 1 deletion src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Interfaces\EnvironmentInterface;
use Intervention\HttpAuth\Interfaces\TokenInterface;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Intervention\HttpAuth\Exception;
namespace Intervention\HttpAuth\Exceptions;

use RuntimeException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Intervention\HttpAuth\Exception;
namespace Intervention\HttpAuth\Exceptions;

use RuntimeException;

Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/EnvironmentInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Interfaces;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;

interface EnvironmentInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/VaultInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Interfaces;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Type;

interface VaultInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Token/HttpAuthentification.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;

class HttpAuthentification extends AbstractToken
{
Expand Down
2 changes: 1 addition & 1 deletion src/Token/HttpAuthorization.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;

class HttpAuthorization extends AbstractToken
{
Expand Down
2 changes: 1 addition & 1 deletion src/Token/PhpAuthDigest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;

class PhpAuthDigest extends AbstractToken
{
Expand Down
2 changes: 1 addition & 1 deletion src/Token/PhpAuthUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;

class PhpAuthUser extends AbstractToken
{
Expand Down
2 changes: 1 addition & 1 deletion src/Token/RedirectHttpAuthorization.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;

class RedirectHttpAuthorization extends AbstractToken
{
Expand Down
2 changes: 1 addition & 1 deletion src/Vault/AbstractVault.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Intervention\HttpAuth\Vault;

use Intervention\HttpAuth\Environment;
use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Interfaces\TokenInterface;
use Intervention\HttpAuth\Interfaces\VaultInterface;
use SensitiveParameter;
Expand Down
2 changes: 1 addition & 1 deletion src/Vault/BasicVault.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Intervention\HttpAuth\Vault;

use Intervention\HttpAuth\Directive;
use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Interfaces\DirectiveInterface;
use Intervention\HttpAuth\Interfaces\TokenInterface;
use Intervention\HttpAuth\Type;
Expand Down
2 changes: 1 addition & 1 deletion src/Vault/DigestVault.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Intervention\HttpAuth\Vault;

use Intervention\HttpAuth\Directive;
use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Interfaces\DirectiveInterface;
use Intervention\HttpAuth\Interfaces\TokenInterface;
use Intervention\HttpAuth\Type;
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Token/HttpAuthentificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Tests\Unit\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Tests\TestCase;
use Intervention\HttpAuth\Token\HttpAuthentification;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Token/HttpAuthorizationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Tests\Unit\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Tests\TestCase;
use Intervention\HttpAuth\Token\HttpAuthorization;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Token/PhpAuthDigestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Tests\Unit\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Tests\TestCase;
use Intervention\HttpAuth\Token\PhpAuthDigest;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Token/PhpAuthUserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Tests\Unit\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Tests\TestCase;
use Intervention\HttpAuth\Token\PhpAuthUser;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Token/RedirectHttpAuthorizationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Intervention\HttpAuth\Tests\Unit\Token;

use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Tests\TestCase;
use Intervention\HttpAuth\Token\RedirectHttpAuthorization;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Vault/BasicVaultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Intervention\HttpAuth\Vault\BasicVault;
use Intervention\HttpAuth\Directive;
use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Token\HttpAuthentification;
use Intervention\HttpAuth\Token\HttpAuthorization;
use Intervention\HttpAuth\Token\PhpAuthDigest;
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Vault/DigestVaultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Intervention\HttpAuth\Tests\Unit\Vault;

use Intervention\HttpAuth\Directive;
use Intervention\HttpAuth\Exception\AuthentificationException;
use Intervention\HttpAuth\Exceptions\AuthentificationException;
use Intervention\HttpAuth\Token\HttpAuthentification;
use Intervention\HttpAuth\Token\HttpAuthorization;
use Intervention\HttpAuth\Token\PhpAuthDigest;
Expand Down

0 comments on commit b7d4013

Please sign in to comment.