Neos\Flow\ResourceManagement\CollectionInterface::getName PHP Метод

getName() публичный Метод

Returns the name of this collection
public getName ( ) : string
Результат string
    public function getName();

Usage Example

 /**
  * Handle missing data notification
  *
  * @param CollectionInterface $collection
  * @param ResourceMetaDataInterface $resource
  */
 protected function handleMissingData(ResourceMetaDataInterface $resource, CollectionInterface $collection)
 {
     $message = sprintf('Could not publish resource %s with SHA1 hash %s of collection %s because there seems to be no corresponding data in the storage.', $resource->getFilename(), $resource->getSha1(), $collection->getName());
     $this->messageCollector->append($message);
 }
All Usage Examples Of Neos\Flow\ResourceManagement\CollectionInterface::getName