From ca79a2a2ff1836b802ce192fc6e66a3dac77b2b4 Mon Sep 17 00:00:00 2001 From: Morten Poul Jensen Date: Tue, 12 Feb 2019 14:34:48 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Commands/RefactorDbCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/RefactorDbCommand.php b/src/Commands/RefactorDbCommand.php index 97cf2c7..3e86fdf 100644 --- a/src/Commands/RefactorDbCommand.php +++ b/src/Commands/RefactorDbCommand.php @@ -32,11 +32,11 @@ public function handle() $class = $this->option('class'); if (! class_exists($class)) { - throw new Exception('Invalid refactor class: ' . $class); + throw new Exception('Invalid refactor class: '.$class); } if (! (new ReflectionClass($class))->hasMethod('run')) { - throw new Exception('Method run does not exist on: ' . $class); + throw new Exception('Method run does not exist on: '.$class); } (new $class)->run();