Skip to content

Commit 7e5170c

Browse files
committed
Whitespace fixes.
1 parent c0f7d28 commit 7e5170c

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v2
2525
# Run the Solid test-suite
2626
- name: Run the Solid test suite
27-
# Until the test-suite has been fixed, allow the tests to fail.
27+
# Until the test-suite has been fixed, allow the tests to fail.
2828
# See: https://github.com/pdsinterop/solid-nextcloud/issues/69
2929
continue-on-error: true
3030
shell: 'script -q -e -c "bash {0}"'

solid/lib/Controller/ContactsController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
use Pdsinterop\Solid\Auth\WAC;
1818
use Pdsinterop\Solid\Resources\Server as ResourceServer;
1919

20-
class ContactsController extends Controller {
21-
20+
class ContactsController extends Controller
21+
{
2222
use DpopFactoryTrait;
2323

2424
/* @var IURLGenerator */

solid/lib/Controller/ServerController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
use Lcobucci\JWT\Signer\Key\InMemory;
2020
use Lcobucci\JWT\Signer\Rsa\Sha256;
2121

22-
class ServerController extends Controller {
23-
22+
class ServerController extends Controller
23+
{
2424
use DpopFactoryTrait;
2525

2626
private $userId;

solid/lib/Controller/StorageController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
use Pdsinterop\Solid\Auth\WAC;
1818
use Pdsinterop\Solid\Resources\Server as ResourceServer;
1919

20-
class StorageController extends Controller {
21-
20+
class StorageController extends Controller
21+
{
2222
use DpopFactoryTrait;
2323

2424
/* @var IURLGenerator */

solid/lib/JtiReplayDetector.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010

1111
class JtiReplayDetector implements ReplayDetectorInterface
1212
{
13-
1413
////////////////////////////// CLASS PROPERTIES \\\\\\\\\\\\\\\\\\\\\\\\\\\\
1514

1615
private string $table = 'solid_jti';
1716

1817
//////////////////////////////// PUBLIC API \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
1918

20-
public function __construct(private DateInterval $interval, private IDBConnection $connection) {}
19+
public function __construct(private DateInterval $interval, private IDBConnection $connection)
20+
{
21+
}
2122

2223
public function detect(string $jti, string $targetUri): bool
2324
{

0 commit comments

Comments
 (0)