Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. namespace MB\CoreBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4.  
  5. /**
  6. * @ORM\Entity
  7. */
  8. class Keyword {
  9.  
  10. /**
  11. * @ORM\Column(type="string")
  12. */
  13. protected $value;
  14.  
  15. public function setValue($value){
  16. $this->value = $value;
  17. }
  18.  
  19. public function getValue(){
  20. return $this->value;
  21. }
  22.  
  23.  
  24. }
Add Comment
Please, Sign In to add comment