for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Silverback\ApiComponentBundle\Entity\Content\Component\Feature\Columns;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\ORM\Mapping as ORM;
use Silverback\ApiComponentBundle\Entity\Content\Component\Feature\AbstractFeature;
use Symfony\Component\Serializer\Annotation\Groups;
/**
* Class FeatureColumns
* @package Silverback\ApiComponentBundle\Entity\Content\Component\FeatureHorizontal
* @author Daniel West <[email protected]>
* @ApiResource()
* @ORM\Entity()
*/
class FeatureColumns extends AbstractFeature
{
* @ORM\Column()
* @Groups({"component", "content"})
* @var null|string
protected $title;
* @return null|string
public function getTitle(): ?string
return $this->title;
}
* @param null|string $title
public function setTitle(?string $title): void
$this->title = $title;