From 755eef98f79b36285c28639afbac6757749ba3e0 Mon Sep 17 00:00:00 2001 From: arnebr Date: Sun, 16 Jun 2024 14:53:15 +0000 Subject: [PATCH] Fix styling --- src/Commands/SqliteBackupCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/SqliteBackupCommand.php b/src/Commands/SqliteBackupCommand.php index 5ad8e0b..4141411 100644 --- a/src/Commands/SqliteBackupCommand.php +++ b/src/Commands/SqliteBackupCommand.php @@ -32,7 +32,7 @@ public function handle(): int $backupPath = database_path('backups'); // Create the backup directory if it doesn't exist - if (File::isDirectory($backupPath)===false) { + if (File::isDirectory($backupPath) === false) { $this->info('Backup directory created at: '.$backupPath); File::makeDirectory($backupPath); }