for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lakion\CmsPlugin\Document;
use Sylius\Component\Resource\Model\ResourceInterface;
use Symfony\Cmf\Bundle\ContentBundle\Doctrine\Phpcr\StaticContent as BaseStaticContent;
class StaticContent extends BaseStaticContent implements ResourceInterface
{
/**
* @var string
*/
private $metaKeywords;
private $metaDescription;
* @return string
public function getMetaKeywords()
return $this->metaKeywords;
}
* @param string $metaKeywords
public function setMetaKeywords($metaKeywords)
$this->metaKeywords = $metaKeywords;
public function getMetaDescription()
return $this->metaDescription;
* @param string $metaDescription
public function setMetaDescription($metaDescription)
$this->metaDescription = $metaDescription;