PartKeepr\DoctrineReflectionBundle\Filter\AdvancedSearchFilter::getAlias PHP Method

getAlias() private method

Returns an alias for the given association property.
private getAlias ( string $property ) : string
$property string The property in FQDN format, e.g. "comments.authors.name"
return string The table alias
    private function getAlias($property)
    {
        if (!array_key_exists($property, $this->aliases)) {
            $this->aliases[$property] = 't' . count($this->aliases);
        }
        return $this->aliases[$property];
    }