Opensoft\Rollout\Rollout::__construct PHP Method

__construct() public method

public __construct ( Opensoft\Rollout\Storage\StorageInterface $storage )
$storage Opensoft\Rollout\Storage\StorageInterface
    public function __construct(StorageInterface $storage)
    {
        $this->storage = $storage;
        $this->groups = array('all' => function (RolloutUserInterface $user) {
            return $user !== null;
        });
    }