Skip to content

Commit

Permalink
style: apply php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
mochaaP committed Jan 19, 2024
1 parent a489657 commit d8f0d00
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion plugins/batch-import/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
return function (Dispatcher $events) {
$events->listen(ArtisanStarting::class, function (ArtisanStarting $event) {
$event->artisan->resolveCommands([
\BatchImport\ImportCommand::class,
BatchImport\ImportCommand::class,
]);
});
};
2 changes: 1 addition & 1 deletion plugins/password-algorithm-transition/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

app()->instance(
'cipher',
new \GPlane\PasswordTransition\Cipher(preg_split('/,\s*/', env('SALT')))
new GPlane\PasswordTransition\Cipher(preg_split('/,\s*/', env('SALT')))
);
};
2 changes: 1 addition & 1 deletion plugins/texture-type-cast/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
return function (Dispatcher $events) {
$events->listen(ArtisanStarting::class, function (ArtisanStarting $event) {
$event->artisan->resolveCommands([
\Blessing\TextureTypeCast\CastTextureType::class,
Blessing\TextureTypeCast\CastTextureType::class,
]);
});
};
2 changes: 1 addition & 1 deletion plugins/trust-proxies/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

return function () {
$kernel = app()->make('Illuminate\Contracts\Http\Kernel');
$kernel->pushMiddleware(\GPlane\TrustProxies\TrustProxies::class);
$kernel->pushMiddleware(GPlane\TrustProxies\TrustProxies::class);
};
10 changes: 5 additions & 5 deletions plugins/yggdrasil-api/src/Controllers/ServicesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ public function getPublicKeys()
$result = [
'profilePropertyKeys' => [
[
'publicKey' => Key::getPublicKey($privateKey)
]
'publicKey' => Key::getPublicKey($privateKey),
],
],
'playerCertificateKeys' => [
[
'pulicKey' => Key::getPublicKey($privateKey)
]
]
'pulicKey' => Key::getPublicKey($privateKey),
],
],
];

return json($result);
Expand Down

0 comments on commit d8f0d00

Please sign in to comment.