PartKeepr\FootprintBundle\Entity\Footprint::getCategoryPath PHP Метод

getCategoryPath() публичный Метод

Returns the category path.
public getCategoryPath ( ) : string
Результат string
    public function getCategoryPath()
    {
        if ($this->category !== null) {
            return $this->category->getCategoryPath();
        } else {
            return '';
        }
    }