Skip to content

Commit 7825a95

Browse files
committed
chore: update dependencies, fix lint errors
1 parent 0ed5e27 commit 7825a95

File tree

3 files changed

+49
-54
lines changed

3 files changed

+49
-54
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Install dependencies
3636
if: steps.composer-cache.outputs.cache-hit != 'true'
37-
run: composer update --prefer-dist --no-progress
37+
run: composer install --prefer-dist --no-progress
3838

3939
- name: Linting
4040
run: composer lint

composer.lock

Lines changed: 45 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/AbstractToken.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ public static function base64ToPEMPublicKey(string $data): string
132132
]);
133133

134134
return
135-
"-----BEGIN PUBLIC KEY-----\n" .
136-
chunk_split($data, 64) .
137-
"-----END PUBLIC KEY-----\n";
135+
"-----BEGIN PUBLIC KEY-----\n"
136+
. chunk_split($data, 64)
137+
. "-----END PUBLIC KEY-----\n";
138138
}
139139

140140
/**

0 commit comments

Comments
 (0)