src/Entity/System/IpAddressDailyCommentBan.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 IpAddressDailyCommentBan extends IpAddressCommentBan
  6. {
  7.     public function getType(): string
  8.     {
  9.         return 'daily';
  10.     }
  11. }