From 3865fc21f96738e5fa437a93e5e5af0d5b83c84a Mon Sep 17 00:00:00 2001 From: luceos Date: Mon, 31 May 2021 14:08:49 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- framework/core/src/Database/Migrator.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/framework/core/src/Database/Migrator.php b/framework/core/src/Database/Migrator.php index 200745e3b..03b0dde1a 100644 --- a/framework/core/src/Database/Migrator.php +++ b/framework/core/src/Database/Migrator.php @@ -265,7 +265,9 @@ class Migrator foreach (explode(';', $dump) as $statement) { $statement = trim($statement); - if (empty($statement) || substr($statement, 0, 2) === '/*') continue; + if (empty($statement) || substr($statement, 0, 2) === '/*') { + continue; + } $statement = str_replace( 'db_prefix_',