From 51adf57f17e9da15476f0daf7dae472fc09a9447 Mon Sep 17 00:00:00 2001 From: Clark Winkelmann Date: Fri, 9 Feb 2018 18:41:51 +0100 Subject: [PATCH] Fix formatting --- framework/core/src/Database/Console/RollbackCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/core/src/Database/Console/RollbackCommand.php b/framework/core/src/Database/Console/RollbackCommand.php index 4a54c24be..cae85eee0 100644 --- a/framework/core/src/Database/Console/RollbackCommand.php +++ b/framework/core/src/Database/Console/RollbackCommand.php @@ -56,12 +56,12 @@ class RollbackCommand extends AbstractCommand $extension = $this->manager->getExtension($extensionName); if (!$extension) { - $this->info('Could not find extension ' . $extensionName); + $this->info('Could not find extension '.$extensionName); return; } - $this->info('Rolling back extension: ' . $extensionName); + $this->info('Rolling back extension: '.$extensionName); $notes = $this->manager->migrateDown($extension);