mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-23 18:28:49 +02:00
Fixed coding style.
This commit is contained in:
parent
0a94689d98
commit
f2ff77a8b3
44 changed files with 435 additions and 387 deletions
|
@ -1,4 +1,7 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||
*
|
||||
|
@ -25,18 +28,18 @@ use Doctrine\ORM\Mapping as ORM;
|
|||
|
||||
/**
|
||||
* @ORM\Entity()
|
||||
* @package App\Entity\LogSystem
|
||||
*/
|
||||
class ElementEditedLogEntry extends AbstractLogEntry
|
||||
{
|
||||
protected $typeString = "element_edited";
|
||||
protected $typeString = 'element_edited';
|
||||
|
||||
/**
|
||||
* Returns the message associated with this edit change
|
||||
* Returns the message associated with this edit change.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMessage() : string
|
||||
public function getMessage(): string
|
||||
{
|
||||
return $this->extra['m'] ?? '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue