Knp\Bundle\KnpBundlesBundle\Entity\Bundle::getFullName PHP Method

getFullName() public method

Get full name, including ownerName
public getFullName ( ) : string
return string
    public function getFullName()
    {
        return $this->ownerName . '/' . $this->name;
    }

Usage Example

Example #1
0
 /**
  * Delete all bundles from index
  */
 public function deleteBundlesIndexes(Bundle $bundle = null)
 {
     $delete = $this->solarium->createUpdate();
     $delete->addDeleteQuery(null !== $bundle ? $bundle->getFullName() : '*:*');
     $delete->addCommit();
     $this->solarium->update($delete);
 }
All Usage Examples Of Knp\Bundle\KnpBundlesBundle\Entity\Bundle::getFullName