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