Skip to content

Commit

Permalink
style: fix cs issues
Browse files Browse the repository at this point in the history
  • Loading branch information
christeredvartsen committed Aug 23, 2023
1 parent cb0d3b1 commit 29a6e0c
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions public/index.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval;

use DI\Container;
Expand Down
1 change: 1 addition & 0 deletions src/Controllers/IndexController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Controllers;

use Nais\Device\Approval\SamlRequest;
Expand Down
1 change: 1 addition & 0 deletions src/Controllers/MembershipController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Controllers;

use Nais\Device\Approval\Session;
Expand Down
1 change: 1 addition & 0 deletions src/Controllers/SamlController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Controllers;

use DOMDocument;
Expand Down
1 change: 1 addition & 0 deletions src/Middleware/EnvironmentValidation.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Middleware;

use Psr\Http\Message\ResponseInterface as Response;
Expand Down
1 change: 1 addition & 0 deletions src/SamlRequest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval;

use DateTime;
Expand Down
1 change: 1 addition & 0 deletions src/SamlResponseValidator.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval;

use OneLogin\Saml2\Utils as SamlUtils;
Expand Down
1 change: 1 addition & 0 deletions src/Session.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval;

use Nais\Device\Approval\Session\User;
Expand Down
1 change: 1 addition & 0 deletions src/Session/User.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Session;

class User
Expand Down
1 change: 1 addition & 0 deletions tests/Controllers/IndexControllerTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Controllers;

use Nais\Device\Approval\Session;
Expand Down
1 change: 1 addition & 0 deletions tests/Controllers/MembershipControllerTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Controllers;

use Nais\Device\Approval\Session;
Expand Down
1 change: 1 addition & 0 deletions tests/Controllers/SamlControllerTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Controllers;

use Nais\Device\Approval\SamlResponseValidator;
Expand Down
1 change: 1 addition & 0 deletions tests/Middleware/EnvironmentValidationTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Middleware;

use PHPUnit\Framework\TestCase;
Expand Down
1 change: 1 addition & 0 deletions tests/SamlRequestTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval;

use PHPUnit\Framework\TestCase;
Expand Down
1 change: 1 addition & 0 deletions tests/Session/UserTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval\Session;

use PHPUnit\Framework\TestCase;
Expand Down
1 change: 1 addition & 0 deletions tests/SessionTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);

namespace Nais\Device\Approval;

use Nais\Device\Approval\Session\User;
Expand Down

0 comments on commit 29a6e0c

Please sign in to comment.