Skip to content

Commit 57f4c92

Browse files
committed
Fixed 'value' argument definition for 'node:property:set'
1 parent 7babb50 commit 57f4c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPCR/Shell/Console/Command/Phpcr/NodePropertySetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ protected function configure()
1717
$this->setName('node:property:set');
1818
$this->setDescription('Rename the node at the current path');
1919
$this->addArgument('path', InputArgument::REQUIRED, 'Path of property - can include the node name');
20-
$this->addArgument('value', null, InputArgument::OPTIONAL, null, 'Value for named property');
20+
$this->addArgument('value', InputArgument::OPTIONAL, 'Value for named property');
2121
$this->addOption('type', null, InputOption::VALUE_REQUIRED, 'Type of named property');
2222
$this->setHelp(<<<HERE
2323
Defines a value for a property identified by its name.

0 commit comments

Comments
 (0)