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 SidelinesTrait
{
/**
* @ORM\Column(type="integer")
*/
private $rerolls;
private $cheerleaders;
private $assistants;
private $popularity;
* @ORM\Column(type="boolean")
private $apothecary;
public function getRerolls(): ?int
return $this->rerolls;
}
public function setRerolls(int $rerolls): self
$this->rerolls = $rerolls;
return $this;
public function getCheerleaders(): ?int
return $this->cheerleaders;
public function setCheerleaders(int $cheerleaders): self
$this->cheerleaders = $cheerleaders;
public function getAssistants(): ?int
return $this->assistants;
public function setAssistants(int $assistants): self
$this->assistants = $assistants;
public function getPopularity(): ?int
return $this->popularity;
public function setPopularity(int $popularity): self
$this->popularity = $popularity;
public function getApothecary(): ?bool
return $this->apothecary;
public function setApothecary(bool $apothecary): self
$this->apothecary = $apothecary;