<?phpnamespace App\Entity\Auth;use Symfony\Component\Validator\Constraints as Assert;class ResetSmsPassword{ /** * @var string|null * @Assert\Positive() */ private $query; /** * Get the value of query * * @return string|null */ public function getQuery() { return $this->query; } /** * Set the value of query * * @param string|null $query * * @return self */ public function setQuery($query) { $this->query = $query; return $this; }}