svg
This commit is contained in:
@ -24,11 +24,11 @@ class Accounting
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $title = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
#[ORM\Column(length: 255, nullable: true)]
|
||||
private ?string $icon = null;
|
||||
|
||||
#[ORM\Column]
|
||||
private ?bool $actif = null;
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $category = null;
|
||||
|
||||
#[ORM\ManyToOne(inversedBy: 'accountings')]
|
||||
#[ORM\JoinColumn(nullable: false)]
|
||||
@ -98,21 +98,21 @@ class Accounting
|
||||
return $this->icon;
|
||||
}
|
||||
|
||||
public function setIcon(string $icon): static
|
||||
public function setIcon(?string $icon): static
|
||||
{
|
||||
$this->icon = $icon;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isActif(): ?bool
|
||||
public function getCategory(): ?string
|
||||
{
|
||||
return $this->actif;
|
||||
return $this->category;
|
||||
}
|
||||
|
||||
public function setActif(bool $actif): static
|
||||
public function setCategory(string $category): static
|
||||
{
|
||||
$this->actif = $actif;
|
||||
$this->category = $category;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ class Company
|
||||
return $this->adress;
|
||||
}
|
||||
|
||||
public function setAdress(string $adress): static
|
||||
public function setAdress(?string $adress): static
|
||||
{
|
||||
$this->adress = $adress;
|
||||
|
||||
@ -260,4 +260,5 @@ class Company
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -95,4 +95,5 @@ class Operation
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user