Skip to content

Commit

Permalink
Merge pull request #1 from morawskim/php71
Browse files Browse the repository at this point in the history
Fix support for PHP 7.1
  • Loading branch information
teiling88 authored Nov 28, 2023
2 parents 2cc00ec + 25d39ac commit 7b19256
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/Activator/DatabaseActivator.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 7b19256

Please sign in to comment.