src/Entity/Alias.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity()
  6.  *
  7.  * @ORM\Table(name="search_alias")
  8.  */
  9. class Alias
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      *
  14.      * @ORM\GeneratedValue(strategy="AUTO")
  15.      *
  16.      * @ORM\Column(type="bigint")
  17.      */
  18.     protected $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, unique=true)
  21.      */
  22.     protected $originalWord;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     protected $replacementWord;
  27.     /**
  28.      * Constructor.
  29.      */
  30.     public function __construct()
  31.     {
  32.     }
  33.     /**
  34.      * Gets the value of id.
  35.      */
  36.     public function getId()
  37.     {
  38.         return $this->id;
  39.     }
  40.     /**
  41.      * Gets the value of originalWord.
  42.      *
  43.      * @return string
  44.      */
  45.     public function getOriginalWord()
  46.     {
  47.         return $this->originalWord;
  48.     }
  49.     /**
  50.      * Sets the value of originalWord.
  51.      *
  52.      * @param string $originalWord the original word
  53.      *
  54.      * @return self
  55.      */
  56.     public function setOriginalWord($originalWord)
  57.     {
  58.         $this->originalWord $originalWord;
  59.         return $this;
  60.     }
  61.     /**
  62.      * Gets the value of replacementWord.
  63.      *
  64.      * @return string
  65.      */
  66.     public function getReplacementWord()
  67.     {
  68.         return $this->replacementWord;
  69.     }
  70.     /**
  71.      * Sets the value of replacementWord.
  72.      *
  73.      * @param string $replacementWord the replacement word
  74.      *
  75.      * @return self
  76.      */
  77.     public function setReplacementWord($replacementWord)
  78.     {
  79.         $this->replacementWord $replacementWord;
  80.         return $this;
  81.     }
  82. }