<?php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
class SearchPro
{
private $name;
private $type;
private $sports;
private $country;
private $languages;
private $hasLabels;
public function __construct()
{
$this->sports = new ArrayCollection();
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getType()
{
return $this->type;
}
public function setType($type)
{
$this->type = $type;
return $this;
}
public function getSports()
{
return $this->sports;
}
public function setSports($sports)
{
return $this->sports;
}
public function getCountry(): ?string
{
return $this->country;
}
public function setCountry(string $country): self
{
$this->country = $country;
return $this;
}
public function getLanguages()
{
return $this->languages;
}
public function setLanguages($languages)
{
$this->languages = $languages;
return $this;
}
public function getHasLabels()
{
return $this->hasLabels;
}
public function setHasLabels($hasLabels)
{
$this->hasLabels = $hasLabels;
return $this;
}
}