File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/PHPCR/Shell/Console/Application Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ dev-master
1111
1212### Bug fixes
1313
14+ - [ capability] Commands not being disabled based on capability
1415- [ config] Do not override CLI options with profile options
1516- [ node: remove ] Cannot ` node:remove ` by UUID
1617- [ node: edit ] Serialization of single value references doesn't work
Original file line number Diff line number Diff line change 2121use PHPCR \Shell \Console \Command \Phpcr \PhpcrShellCommand ;
2222use PHPCR \Shell \Config \Profile ;
2323use PHPCR \Shell \PhpcrShell ;
24+ use PHPCR \Shell \Console \Command \Phpcr \BasePhpcrCommand ;
2425
2526/**
2627 * Main application for PHPCRSH
@@ -272,7 +273,7 @@ public function add(Command $command)
272273 $ command ->setContainer ($ this ->container );
273274 }
274275
275- if ($ command instanceof PhpcrShellCommand ) {
276+ if ($ command instanceof BasePhpcrCommand ) {
276277 if ($ this ->showUnsupported || $ command ->isSupported ()) {
277278 parent ::add ($ command );
278279 }
You can’t perform that action at this time.
0 commit comments