Remove re-engagement-email feature flag

[MAILPOET-3859]
This commit is contained in:
Rodrigo Primo
2021-11-17 15:03:37 -03:00
committed by Veljko V
parent 28061a8c8b
commit 84209851e2
7 changed files with 18 additions and 51 deletions

View File

@@ -5,13 +5,10 @@ namespace MailPoet\Features;
use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
class FeaturesController {
const RE_ENGAGEMENT_EMAIL = 're-engagement-email';
// Define feature defaults in the array below in the following form:
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::RE_ENGAGEMENT_EMAIL => false,
];
private $defaults = [];
/** @var array */
private $flags;