for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Project\Domain\Article\Entity;
class Tag
{
/**
* @var integer
*/
protected $id;
* @var string
protected $title;
protected $slug;
* @return int
public function getId(): int
return $this->id;
}
* @return string
public function getTitle(): string
return $this->title;
* @param string $title
public function setTitle(string $title)
$this->title = $title;
public function getSlug(): string
return $this->slug;
* @param string $slug
public function setSlug(string $slug)
$this->slug = $slug;