WTFs - Jackalope2/jackalope GitHub Wiki
-
getNodeByIdentifier requires a
jcr:path
property: https://github.com/jackalope/jackalope/blob/node_validator/src/Jackalope/ObjectManager.php -
Node::rename does a move (moving to the end) and then a reorder. For jackrabbit this it the thing to do, but for doctrine-dbal, this is double overhead. Quickfix for bug in https://github.com/jackalope/jackalope/pull/262
-
phpcr-utils NodeHelper should be instantiated not called statically. Methods such as NodeHelper::createPath($session, $path) make testing really difficult. (also purgeWorkspace, etc).