public function __construct()

in src/Facebook/InstantArticles/Transformer/Settings/AnalyticsSettings.php [26:36]


    public function __construct($fbPixelId = "", $rawHTML = "")
    {
        if (Type::enforce($fbPixelId, Type::STRING) &&
            !Type::isTextEmpty($fbPixelId)) {
            $this->fbPixelId = $fbPixelId;
        }
        if (Type::enforce($rawHTML, Type::STRING) &&
            !Type::isTextEmpty($rawHTML)) {
            $this->rawHTML = $rawHTML;
        }
    }