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 db7a8a2 commit c737cb9
Show file tree
Hide file tree
Showing 28 changed files with 28 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 Naisdevice\Jita;

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

namespace Naisdevice\Jita;

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

namespace Naisdevice\Jita\Controllers;

use DateTime;
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 Naisdevice\Jita\Controllers;

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

namespace Naisdevice\Jita\Controllers;

use Prometheus\CollectorRegistry;
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 Naisdevice\Jita\Controllers;

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

namespace Naisdevice\Jita;

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

namespace Naisdevice\Jita;

class FlashMessage
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 Naisdevice\Jita\Middleware;

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

namespace Naisdevice\Jita\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 Naisdevice\Jita;

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 Naisdevice\Jita;

use OneLogin\Saml2\Utils;
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 Naisdevice\Jita;

use Naisdevice\Jita\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 Naisdevice\Jita\Session;

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

namespace Naisdevice\Jita;

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

namespace Naisdevice\Jita;

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

namespace Naisdevice\Jita\Controllers;

use Doctrine\DBAL\Connection;
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 Naisdevice\Jita\Controllers;

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

namespace Naisdevice\Jita\Controllers;

use PHPUnit\Framework\TestCase;
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 Naisdevice\Jita\Controllers;

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

namespace Naisdevice\Jita;

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

namespace Naisdevice\Jita;

use PHPUnit\Framework\TestCase;
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 Naisdevice\Jita\Middleware;

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

namespace Naisdevice\Jita\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 Naisdevice\Jita;

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 Naisdevice\Jita\Session;

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

namespace Naisdevice\Jita;

use Doctrine\DBAL\Connection;
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 Naisdevice\Jita;

use Naisdevice\Jita\Session\User;
Expand Down

0 comments on commit c737cb9

Please sign in to comment.