From 0f11afe16239ab20c254e69f4094b116543e19d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sun, 9 Aug 2020 22:23:01 +0200 Subject: [PATCH] adding --- app/Commands/LetsEncryptRemoveCommand.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app/Commands/LetsEncryptRemoveCommand.php b/app/Commands/LetsEncryptRemoveCommand.php index 5ff9551..10e709d 100644 --- a/app/Commands/LetsEncryptRemoveCommand.php +++ b/app/Commands/LetsEncryptRemoveCommand.php @@ -6,8 +6,11 @@ use Illuminate\Console\Scheduling\Schedule; use LaravelZero\Framework\Commands\Command; /** + * Remove LetsEncrypt Cerficates * - * + * @author Björn Hase, Tentakelfabrik + * @license http://opensource.org/licenses/MIT The MIT License + * @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp * */ class LetsEncryptRemoveCommand extends Command @@ -58,15 +61,15 @@ class LetsEncryptRemoveCommand extends Command } if ($errors === (count($diretories) - 1)) { - $this->error('Error! Certificate for '.$domain.' ...not found!'); + $this->error('Error! Certificate for '.$domain.'...not found!'); } if ($erros > 0 && $errors < (count($diretories) - 1)) { - $this->error('Trouble! Certificate for '.$domain.' ...delete! Some files were not found!'); + $this->error('Trouble! Certificate for '.$domain.'...delete! Some files were not found!'); } if ($errors === 0) { - $this->info('Success! Certificate for '.$domain.' ...deleted!'); + $this->info('Success! Certificate for '.$domain.'...deleted!'); } } }