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

update() public method

public update ( string $keywords, boolean $keywordsOverwrite, string $description, boolean $descriptionOverwrite, string $title, boolean $titleOverwrite, string $url, boolean $urlOverwrite, string $custom, array $data )
$keywords string
$keywordsOverwrite boolean
$description string
$descriptionOverwrite boolean
$title string
$titleOverwrite boolean
$url string
$urlOverwrite boolean
$custom string
$data array
    public function update($keywords, $keywordsOverwrite, $description, $descriptionOverwrite, $title, $titleOverwrite, $url, $urlOverwrite, $custom, array $data)
    {
        $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;
    }