From bce152c890b9ac2f4dbd4c35e20f245f01773ca4 Mon Sep 17 00:00:00 2001 From: Jesus Suarez Date: Tue, 22 Apr 2025 16:44:12 -0500 Subject: [PATCH] Update bin/administration Use spaces instead of tabs for indentation consistency Co-authored-by: El RIDO --- bin/administration | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/administration b/bin/administration index 7fd373c2..3fe090d4 100755 --- a/bin/administration +++ b/bin/administration @@ -344,13 +344,13 @@ EOT, PHP_EOL; $class = 'PrivateBin\\Data\\' . $this->_conf->getKey('class', 'model'); $this->_store = new $class($this->_conf->getSection('model_options')); - - if ($this->_option('l', 'list-ids') !== null) { - $this->_list_ids(); - } - if ($this->_option(null, 'delete-all') !== null) { - $this->_delete_all(); - } + + if ($this->_option('l', 'list-ids') !== null) { + $this->_list_ids(); + } + if ($this->_option(null, 'delete-all') !== null) { + $this->_delete_all(); + } if (($pasteId = $this->_option('d', 'delete')) !== null) { $this->_delete($pasteId); }