src/Entity/EUmowaBhpStacjonarna/Zaklady.php line 9
<?phpnamespace App\Entity\EUmowaBhpStacjonarna;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity]#[ORM\Table(name: 'zaklady')]class Zaklady{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column(name: 'id_raty', type: 'integer')]private ?int $id = null;#[ORM\Column(name: 'token_umowy', type: 'string', length: 256)]private string $tokenUmowy;#[ORM\Column(type: 'string', length: 256)]private string $nazwa;#[ORM\Column(type: 'string', length: 256)]private string $adres;// --------- Gettery / Settery ---------public function getId(): ?int{return $this->id;}public function getTokenUmowy(): string{return $this->tokenUmowy;}public function setTokenUmowy(string $tokenUmowy): self{$this->tokenUmowy = $tokenUmowy;return $this;}public function getNazwa(): string{return $this->nazwa;}public function setNazwa(string $nazwa): self{$this->nazwa = $nazwa;return $this;}public function getAdres(): string{return $this->adres;}public function setAdres(string $adres): self{$this->adres = $adres;return $this;}}