Common\Doctrine\Entity\Meta::__construct PHP Method

__construct() public method

public __construct ( string $keywords, boolean $keywordsOverwrite, string $description, boolean $descriptionOverwrite, string $title, boolean $titleOverwrite, string $url, boolean $urlOverwrite, string $custom, array $data, integer | null $id = null )
$keywords string
$keywordsOverwrite boolean
$description string
$descriptionOverwrite boolean
$title string
$titleOverwrite boolean
$url string
$urlOverwrite boolean
$custom string
$data array
$id integer | null
    public function __construct($keywords, $keywordsOverwrite, $description, $descriptionOverwrite, $title, $titleOverwrite, $url, $urlOverwrite, $custom, array $data, $id = null)
    {
        $this->keywords = $keywords;
        $this->keywordsOverwrite = $keywordsOverwrite;
        $this->description = $description;
        $this->descriptionOverwrite = $descriptionOverwrite;
        $this->title = $title;
        $this->titleOverwrite = $titleOverwrite;
        $this->url = $url;
        $this->urlOverwrite = $urlOverwrite;
        $this->custom = $custom;
        $this->data = $data;
        $this->id = $id;
    }