PartKeepr\FootprintBundle\Entity\Footprint::getCategoryPath PHP Méthode

getCategoryPath() public méthode

Returns the category path.
public getCategoryPath ( ) : string
Résultat string
    public function getCategoryPath()
    {
        if ($this->category !== null) {
            return $this->category->getCategoryPath();
        } else {
            return '';
        }
    }