fix(continuous-integration): correction php-cs-fixer
All checks were successful
Cadoles/nineskeletor/pipeline/pr-master This commit looks good

This commit is contained in:
2022-09-23 16:14:15 +02:00
parent 5f3cc51f5c
commit b78f54b76c
70 changed files with 5943 additions and 5549 deletions

View File

@ -2,12 +2,10 @@
namespace App\Entity;
use App\Repository\AuditRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* Cron
* Cron.
*
* @ORM\Table(name="audit",indexes={@ORM\Index(name="search_idx", columns={"entityname", "entityid", "datesubmit"})})
* @ORM\Entity(repositoryClass="App\Repository\AuditRepository")
@ -33,8 +31,7 @@ class Audit
/**
* @ORM\Column(type="datetime")
*/
private $datesubmit;
private $datesubmit;
/**
* @ORM\Column(type="string", length=250, nullable=false)
@ -49,7 +46,7 @@ class Audit
/**
* @ORM\Column(type="array", nullable=true)
*/
private $detail = array();
private $detail = [];
public function getId(): ?int
{
@ -127,6 +124,4 @@ class Audit
return $this;
}
}
}