Skip to content

Commit 19c60e4

Browse files
committed
Fixed
1 parent da76df9 commit 19c60e4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/PHPCR/Shell/Console/Application/EmbeddedApplication.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public function __construct($mode)
3939
$container = new Container($this->mode);
4040
parent::__construct($container, SessionApplication::APP_NAME, SessionApplication::APP_VERSION);
4141
$this->setAutoExit(false);
42+
43+
// @deprecated This will be removed in 1.0
4244
$this->getHelperSet()->set(new PhpcrHelper($container->get('phpcr.session_manager')));
4345
}
4446

src/PHPCR/Shell/DependencyInjection/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Container extends ContainerBuilder
1919
protected $transports = array(
2020
'transport.transport.doctrinedbal' => 'PHPCR\Shell\Transport\Transport\DoctrineDbal',
2121
'transport.transport.jackrabbit' => 'PHPCR\Shell\Transport\Transport\Jackrabbit',
22-
'transport.transport.fs' => 'PHPCR\Shell\Transport\Transport\JackrabbitFs',
22+
'transport.transport.fs' => 'PHPCR\Shell\Transport\Transport\JackalopeFs',
2323
);
2424

2525
public function __construct($mode = self::MODE_STANDALONE)

0 commit comments

Comments
 (0)