Remove unused argument

[MAILPOET-2219]
This commit is contained in:
Pavel Dohnal
2019-08-21 11:07:41 +02:00
committed by M. Shull
parent ff9bc0b3b9
commit 3f3983113a
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ class FeatureFlagsRepository extends Repository {
$feature_flag = new FeatureFlagEntity($data['name']);
$this->persist($feature_flag);
}
if (array_key_exists('value', $data)) {
$feature_flag->setValue($data['value']);
}