Skip to content

Commit 81baa23

Browse files
committed
Use wrapped session for node finder
1 parent bd8498d commit 81baa23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPCR/Shell/Phpcr/PhpcrSession.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class PhpcrSession implements SessionInterface
3333
public function __construct(SessionInterface $session, $finder = null)
3434
{
3535
$this->session = $session;
36-
$this->finder = $finder ?: new PhpcrTraversalFinder($session);
36+
$this->finder = $finder ?: new PhpcrTraversalFinder($this);
3737
}
3838

3939
/**

0 commit comments

Comments
 (0)