You've already forked symfony-notifications
rename to notifications
This commit is contained in:
40
NotificationsBundle/Entity/BillingInvoice.php
Normal file
40
NotificationsBundle/Entity/BillingInvoice.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace Bluesquare\NotificationsBundle\Entity;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* @ORM\Entity(repositoryClass="Bluesquare\NotificationsBundle\Repository\BillingInvoiceRepository")
|
||||
*/
|
||||
class BillingInvoice
|
||||
{
|
||||
/**
|
||||
* @ORM\Id()
|
||||
* @ORM\GeneratedValue()
|
||||
* @ORM\Column(type="integer")
|
||||
*/
|
||||
private $id;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", length=255)
|
||||
*/
|
||||
private $azerty;
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getAzerty(): ?string
|
||||
{
|
||||
return $this->azerty;
|
||||
}
|
||||
|
||||
public function setAzerty(string $azerty): self
|
||||
{
|
||||
$this->azerty = $azerty;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user