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

Uses the factory to instantiate a Property. Currently Jackalope just loads the containing node and then returns the requested property of the node instance.
public getPropertyByPath ( string $absPath ) : PHPCR\PropertyInterface
$absPath string The absolute path of the property to create.
Результат PHPCR\PropertyInterface
Пример #1
0
 /**
  * {@inheritDoc}
  *
  * @api
  */
 public function getProperty($absPath)
 {
     try {
         return $this->objectManager->getPropertyByPath($absPath);
     } catch (ItemNotFoundException $e) {
         throw new PathNotFoundException($e->getMessage(), $e->getCode(), $e);
     }
 }