partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

CategoryPathInterface.php (466B)


      1 <?php
      2 
      3 namespace PartKeepr\CategoryBundle\Entity;
      4 
      5 interface CategoryPathInterface
      6 {
      7     /**
      8      * Sets the category path.
      9      *
     10      * @param string $categoryPath The category path
     11      */
     12     public function setCategoryPath($categoryPath);
     13 
     14     /**
     15      * Generates the category path.
     16      *
     17      * @param string $pathSeparator The path separator
     18      *
     19      * @return string The category path
     20      */
     21     public function generateCategoryPath($pathSeparator);
     22 }