PartKeepr\StorageLocationBundle\Entity\StorageLocation::getCategoryPath PHP 메소드

getCategoryPath() 공개 메소드

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