Sulu\Bundle\ResourceBundle\Entity\OperatorRepository::findAllByLocale PHP Method

findAllByLocale() public method

Searches for all operator by locale.
public findAllByLocale ( $locale ) : mixed
$locale
return mixed
    public function findAllByLocale($locale)
    {
        try {
            return $this->getOperatorQuery($locale)->getQuery()->getResult();
        } catch (NoResultException $exc) {
            return;
        }
    }