|
15 | 15 | use PHPCR\SimpleCredentials; |
16 | 16 | use PHPCR\Util\Console\Command\NodeDumpCommand; |
17 | 17 | use PHPCR\Util\Console\Command\NodeMoveCommand; |
18 | | -use PHPCR\Util\Console\Command\NodeRemoveCommand; |
19 | 18 | use PHPCR\Util\Console\Command\NodeTouchCommand; |
20 | 19 | use PHPCR\Util\Console\Command\NodeTypeRegisterCommand; |
21 | 20 | use PHPCR\Util\Console\Command\NodesUpdateCommand; |
|
81 | 80 | use PHPCR\Shell\Console\Command\NodeLifecycleListCommand; |
82 | 81 | use PHPCR\Shell\Console\Command\NodeListCommand; |
83 | 82 | use PHPCR\Shell\Console\Command\NodeReferencesCommand; |
| 83 | +use PHPCR\Shell\Console\Command\NodeSharedShowCommand; |
| 84 | +use PHPCR\Shell\Console\Command\NodeSharedRemoveCommand; |
| 85 | +use PHPCR\Shell\Console\Command\NodeRemoveCommand; |
| 86 | + |
84 | 87 | use Jackalope\NotImplementedException; |
85 | 88 | use Symfony\Component\Console\Formatter\OutputFormatterStyle; |
86 | 89 | use Symfony\Component\Console\Formatter\OutputFormatter; |
@@ -175,6 +178,9 @@ public function init() |
175 | 178 | $this->add(new NodeLifecycleListCommand()); |
176 | 179 | $this->add(new NodeListCommand()); |
177 | 180 | $this->add(new NodeReferencesCommand()); |
| 181 | + $this->add(new NodeSharedShowCommand()); |
| 182 | + $this->add(new NodeSharedRemoveCommand()); |
| 183 | + $this->add(new NodeRemoveCommand()); |
178 | 184 |
|
179 | 185 | // add shell-specific commands |
180 | 186 | $this->add(new ChangePathCommand()); |
|
0 commit comments