src/Entity/SearchArticle.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. class SearchArticle
  4. {
  5.     private $title;
  6.     /**
  7.      * Get the value of title
  8.      */ 
  9.     public function getTitle()
  10.     {
  11.         return $this->title;
  12.     }
  13.     /**
  14.      * Set the value of title
  15.      *
  16.      * @return  self
  17.      */ 
  18.     public function setTitle($title)
  19.     {
  20.         $this->title $title;
  21.         return $this;
  22.     }
  23. }