for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Obblm\Core\Entity\Traits;
use Doctrine\ORM\Mapping as ORM;
trait DeadAndFireTrait
{
/**
* @ORM\Column(type="boolean")
*/
private $dead = false;
private $fired = false;
public function getDead(): ?bool
return $this->dead;
}
public function isDead(): ?bool
public function setDead(bool $dead): self
$this->dead = $dead;
return $this;
public function getFire(): ?bool
return $this->fired;
public function isFired(): ?bool
public function setFired(bool $fired): self
$this->fired = $fired;