src/Entity/PortugalWiki.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity
  6.  */
  7. class PortugalWiki extends Wiki
  8. {
  9.     /**
  10.      * @ORM\Column(type="text")
  11.      */
  12.     protected $intro;
  13.     public function __construct()
  14.     {
  15.         parent::__construct();
  16.     }
  17.     public function getCategory()
  18.     {
  19.         return 'Portugal';
  20.     }
  21.     public function getIntro(): ?string
  22.     {
  23.         return $this->intro;
  24.     }
  25.     public function setIntro(string $intro): void
  26.     {
  27.         $this->intro $intro;
  28.     }
  29. }