src/Entity/Auth/ResetSmsPassword.php line 6

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Auth;
  3. use Symfony\Component\Validator\Constraints as Assert;
  4. class ResetSmsPassword
  5. {
  6.     /**
  7.      * @var string|null
  8.      * @Assert\Positive()
  9.      */
  10.     private $query;
  11.     
  12.     /**
  13.      * Get the value of query
  14.      *
  15.      * @return  string|null
  16.      */ 
  17.     public function getQuery()
  18.     {
  19.         return $this->query;
  20.     }
  21.     /**
  22.      * Set the value of query
  23.      *
  24.      * @param  string|null  $query
  25.      *
  26.      * @return  self
  27.      */ 
  28.     public function setQuery($query)
  29.     {
  30.         $this->query $query;
  31.         return $this;
  32.     }
  33. }
  34.