Fixed coding style.

This commit is contained in:
Jan Böhmer 2020-02-01 16:17:20 +01:00
parent 0a94689d98
commit f2ff77a8b3
44 changed files with 435 additions and 387 deletions

View file

@ -1,4 +1,7 @@
<?php
declare(strict_types=1);
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
@ -21,7 +24,6 @@
namespace App\Entity\LogSystem;
use Doctrine\ORM\Mapping as ORM;
/**
@ -29,10 +31,10 @@ use Doctrine\ORM\Mapping as ORM;
*/
class ElementDeletedLogEntry extends AbstractLogEntry
{
protected $typeString = "element_deleted";
protected $typeString = 'element_deleted';
public function getOldName(): string
{
return $this->extra['n'];
}
}
}