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); }