src/Entity/HomeTranslation.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  *
  6.  * @ORM\Entity
  7.  * @ORM\HasLifecycleCallbacks
  8.  */
  9. class HomeTranslation extends ContenidoTranslation
  10. {
  11.     public function generateSlugValue($values): string
  12.     {
  13.         return "home";
  14.     }
  15. }