Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-the-Diamond authored and github-actions[bot] committed Oct 15, 2024
1 parent c171e3b commit e012c1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function boot(): void
$this->app['mail.manager']->extend('brevo', function ($config) {
$configuration = $this->app->make('config');

return (new BrevoTransportFactory())->create(
return (new BrevoTransportFactory)->create(
Dsn::fromString($configuration->get('services.brevo.dsn'))
);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected function manualBackup($sourceName): int
};
*/

(new CreateBackupAction())
(new CreateBackupAction)
->doNotUseQueue()
//->afterBackupModelCreated($writeLogItemsToConsole)
->execute($source);
Expand Down
2 changes: 1 addition & 1 deletion packages/devops/src/Commands/SyncForgeData.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SyncForgeData extends Command

public function handle()
{
$client = new Client();
$client = new Client;
$apiKey = config('devops.forge_api_key');
$baseUrl = config('devops.forge_api_url');

Expand Down

0 comments on commit e012c1c

Please sign in to comment.