src/Model/Mail.php line 5

Open in your IDE?
  1. <?php 
  2. namespace App\Model;
  3. class Mail
  4. {
  5.     private $fullName;
  6.     private $subject;
  7.     private $message;
  8.     private $email;
  9.     private $contact;
  10.     private $attachment;
  11.     private $template;    
  12.     /**
  13.      * Get the value of subject
  14.      */ 
  15.     public function getSubject()
  16.     {
  17.         return $this->subject;
  18.     }
  19.     /**
  20.      * Set the value of subject
  21.      *
  22.      * @return  self
  23.      */ 
  24.     public function setSubject($subject)
  25.     {
  26.         $this->subject $subject;
  27.         return $this;
  28.     }
  29.     /**
  30.      * Get the value of message
  31.      */ 
  32.     public function getMessage()
  33.     {
  34.         return $this->message;
  35.     }
  36.     /**
  37.      * Set the value of message
  38.      *
  39.      * @return  self
  40.      */ 
  41.     public function setMessage($message)
  42.     {
  43.         $this->message $message;
  44.         return $this;
  45.     }
  46.     /**
  47.      * Get the value of email
  48.      */ 
  49.     public function getEmail()
  50.     {
  51.         return $this->email;
  52.     }
  53.     /**
  54.      * Set the value of email
  55.      *
  56.      * @return  self
  57.      */ 
  58.     public function setEmail($email)
  59.     {
  60.         $this->email $email;
  61.         return $this;
  62.     }
  63.     /**
  64.      * Get the value of contact
  65.      */ 
  66.     public function getContact()
  67.     {
  68.         return $this->contact;
  69.     }
  70.     /**
  71.      * Set the value of contact
  72.      *
  73.      * @return  self
  74.      */ 
  75.     public function setContact($contact)
  76.     {
  77.         $this->contact $contact;
  78.         return $this;
  79.     }
  80.     /**
  81.      * Get the value of fullName
  82.      */ 
  83.     public function getFullName()
  84.     {
  85.         return $this->fullName;
  86.     }
  87.     /**
  88.      * Set the value of fullName
  89.      *
  90.      * @return  self
  91.      */ 
  92.     public function setFullName($fullName)
  93.     {
  94.         $this->fullName $fullName;
  95.         return $this;
  96.     }
  97.     public function setAttachment($file)
  98.     {
  99.         $this->attachment $file;
  100.     }
  101.     public function getAttachment()
  102.     {
  103.         return $this->attachment;
  104.     }
  105.     /**
  106.      * Get the value of template
  107.      */ 
  108.     public function getTemplate()
  109.     {
  110.         return $this->template;
  111.     }
  112.     /**
  113.      * Set the value of template
  114.      *
  115.      * @return  self
  116.      */ 
  117.     public function setTemplate($template)
  118.     {
  119.         $this->template $template;
  120.         return $this;
  121.     }    
  122. }