for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Component\Metadata\Model\Twitter;
/**
* {@inheritdoc}
* @author Kamil Kokot <[email protected]>
class SummaryLargeImageCard extends AbstractCard implements SummaryLargeImageCardInterface
{
protected $type = 'summary_large_image';
* @var string
protected $creator;
protected $creatorId;
protected $title;
protected $description;
protected $image;
public function getCreator()
return $this->creator;
}
public function setCreator($creator)
$this->creator = $creator;
public function getCreatorId()
return $this->creatorId;
public function setCreatorId($creatorId)
$this->creatorId = $creatorId;
public function getTitle()
return $this->title;
public function setTitle($title)
$this->title = $title;
public function getDescription()
return $this->description;
public function setDescription($description)
$this->description = $description;
public function getImage()
return $this->image;
public function setImage($image)
$this->image = $image;