src/Entity/System/IpAddressPermanentCommentBan.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity\System;
  3. use Doctrine\ORM\Mapping as ORM;
  4. #[ORM\Entity]
  5. class IpAddressPermanentCommentBan extends IpAddressCommentBan
  6. {
  7.     public function getType(): string
  8.     {
  9.         return 'permanent';
  10.     }
  11. }