Knp\Bundle\KnpBundlesBundle\Entity\Bundle::getFullName PHP 메소드

getFullName() 공개 메소드

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

Usage 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