8 lines
93 B
PHP
8 lines
93 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
interface AuditableEntity
|
|
{
|
|
public function fieldDump();
|
|
}
|