symfony-notifications/NotificationsBundle/Entity/BillingInvoice.php

41 lines
701 B
PHP
Raw Normal View History

2019-03-01 12:18:06 +01:00
<?php
2019-03-01 12:49:26 +01:00
namespace Bluesquare\NotificationsBundle\Entity;
2019-03-01 12:18:06 +01:00
use Doctrine\ORM\Mapping as ORM;
/**
2019-03-01 12:49:26 +01:00
* @ORM\Entity(repositoryClass="Bluesquare\NotificationsBundle\Repository\BillingInvoiceRepository")
2019-03-01 12:18:06 +01:00
*/
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;
}
}