. */ declare(strict_types=1); namespace App\Entity\LogSystem; use App\Exceptions\LogEntryObsoleteException; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity() */ class ConfigChangedLogEntry extends AbstractLogEntry { protected string $typeString = 'config_changed'; public function __construct() { parent::__construct(); throw new LogEntryObsoleteException(); } }