for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace RssApp\Model;
use Doctrine\ORM\Mapping as ORM;
use RssApp\Model;
use RssApp\Model\Traits\Identified;
use RssApp\Model\Traits\Owned;
/**
* @ORM\Table(indexes={@ORM\Index(name="owner_uid", columns={"owner_uid"})})
* @ORM\Entity
*/
class SettingProfile extends Model
{
use Identified,
Owned;
* @var string
*
* @ORM\Column(name="title", type="string", length=250, nullable=false)
private $title;
$title
}