diff --git a/Classes/Command/AbstractRecordCommandController.php b/Classes/Command/AbstractRecordCommandController.php index 5ba9c0ef..1bc4c4ff 100644 --- a/Classes/Command/AbstractRecordCommandController.php +++ b/Classes/Command/AbstractRecordCommandController.php @@ -42,15 +42,13 @@ protected function configure() 'b', InputOption::VALUE_NONE, 'If set, is ignored and is an array where each key is a remote ID and each ' - . 'value field data. Each set of remote ID and field data will be processed.', - false + . 'value field data. Each set of remote ID and field data will be processed.' ) ->addOption( 'disableReferenceIndex', null, InputOption::VALUE_NONE, - 'If set, the reference index will not be updated.', - false + 'If set, the reference index will not be updated.' ); } diff --git a/Classes/Command/ClearRecordHashCommandController.php b/Classes/Command/ClearRecordHashCommandController.php index eaf9c642..24f4935f 100644 --- a/Classes/Command/ClearRecordHashCommandController.php +++ b/Classes/Command/ClearRecordHashCommandController.php @@ -35,8 +35,7 @@ protected function configure() 'contains', 'c', InputOption::VALUE_NONE, - 'The remoteId argument is a partial remote ID. Match all IDs containing the string.', - false + 'The remoteId argument is a partial remote ID. Match all IDs containing the string.' ); } diff --git a/Classes/Command/CreateCommandController.php b/Classes/Command/CreateCommandController.php index c47b7280..495b8f37 100644 --- a/Classes/Command/CreateCommandController.php +++ b/Classes/Command/CreateCommandController.php @@ -32,8 +32,7 @@ protected function configure() 'update', 'u', InputOption::VALUE_NONE, - 'Quietly update the record if it already exists.', - false + 'Quietly update the record if it already exists.' ); } diff --git a/Classes/Command/PendingRelationsCommandController.php b/Classes/Command/PendingRelationsCommandController.php index 611c19b0..e68c4ca5 100644 --- a/Classes/Command/PendingRelationsCommandController.php +++ b/Classes/Command/PendingRelationsCommandController.php @@ -41,8 +41,7 @@ protected function configure() 'resolve', 'r', InputOption::VALUE_NONE, - 'Attempt to resolve pending relations where both sides exist.', - false + 'Attempt to resolve pending relations where both sides exist.' ); } diff --git a/Classes/Command/UpdateCommandController.php b/Classes/Command/UpdateCommandController.php index fdd683aa..ea4ec29b 100644 --- a/Classes/Command/UpdateCommandController.php +++ b/Classes/Command/UpdateCommandController.php @@ -32,8 +32,7 @@ protected function configure() 'create', 'c', InputOption::VALUE_NONE, - 'Quietly create the record if it doesn\'t already exist.', - false + 'Quietly create the record if it doesn\'t already exist.' ); }