diff --git a/composer.json b/composer.json index c70949a..3099a50 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.1.3 | ^8.0", + "php": "^7.1.3 || ^8.0", "flagception/flagception": "^1.7", "doctrine/dbal": "^2.12", "symfony/options-resolver": ">=2.7" diff --git a/src/Activator/DatabaseActivator.php b/src/Activator/DatabaseActivator.php index eb94be0..ca53e7b 100644 --- a/src/Activator/DatabaseActivator.php +++ b/src/Activator/DatabaseActivator.php @@ -94,7 +94,7 @@ public function isActive($name, Context $context): bool 'SELECT %s FROM %s WHERE %s = :feature_name', $this->options['db_column_state'], $this->options['db_table'], - $this->options['db_column_feature'], + $this->options['db_column_feature'] ), ['feature_name' => $name] )->fetchOne();