From c9cfcee12a33618e2c29fdbaaecad4714c066cac Mon Sep 17 00:00:00 2001 From: Clark Winkelmann Date: Fri, 9 Feb 2018 18:41:51 +0100 Subject: [PATCH] Fix formatting --- src/Database/Console/RollbackCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Database/Console/RollbackCommand.php b/src/Database/Console/RollbackCommand.php index 4a54c24be..cae85eee0 100644 --- a/src/Database/Console/RollbackCommand.php +++ b/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);