Skip to content

Commit 8ab4abb

Browse files
committed
CS fixes
1 parent 261c4de commit 8ab4abb

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/PHPCR/Shell/Console/Command/LockInfoCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected function configure()
2323
This may be either of the lock on that node itself or a deep lock on a node
2424
above that node.
2525
HERE
26-
);
26+
);
2727

2828
$this->requiresDescriptor(RepositoryInterface::OPTION_LOCKING_SUPPORTED, true);
2929
$this->dequiresDescriptor('jackalope.not_implemented.lock.get');

src/PHPCR/Shell/Console/Command/LockLockCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ protected function configure()
5151
5252
It is possible to lock a node even if it is checked-in.
5353
HERE
54-
);
54+
);
55+
5556
$this->requiresDescriptor(RepositoryInterface::OPTION_LOCKING_SUPPORTED, true);
5657
}
5758

src/PHPCR/Shell/Console/Command/RepositoryDescriptorListCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ public function execute(InputInterface $input, OutputInterface $output)
4444
$table->render($output);
4545
}
4646

47-
private function getDescriptorValue($v)
47+
private function getDescriptorValue($value)
4848
{
49-
if (is_bool($v)) {
50-
return $v ? 'true' : 'false';
49+
if (is_bool($value)) {
50+
return $value ? 'true' : 'false';
5151
}
5252

53-
return $v;
53+
return $value;
5454
}
5555
}

0 commit comments

Comments
 (0)