From 4e674d98eb1396f252988e3bde827e850b8a9239 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 22 Mar 2023 00:08:44 -0400 Subject: [PATCH] spelling: unable Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Console/FixAPDeliveryWorkerTaskParameters.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/FixAPDeliveryWorkerTaskParameters.php b/src/Console/FixAPDeliveryWorkerTaskParameters.php index a0bf989fc4..d2357c318d 100644 --- a/src/Console/FixAPDeliveryWorkerTaskParameters.php +++ b/src/Console/FixAPDeliveryWorkerTaskParameters.php @@ -129,7 +129,7 @@ HELP; if (!$parameters) { $this->errored++; if ($this->getOption('v')) { - $this->out('Unabled to parse parameter JSON of the row with id ' . $workerqueueItem['id']); + $this->out('Unable to parse parameter JSON of the row with id ' . $workerqueueItem['id']); $this->out('JSON: ' . var_export($workerqueueItem['parameter'], true)); } } @@ -155,7 +155,7 @@ HELP; } else { $this->errored++; if ($this->getOption('v')) { - $this->out('Unabled to update the row with id ' . $workerqueueItem['id']); + $this->out('Unable to update the row with id ' . $workerqueueItem['id']); $this->out('Fields: ' . var_export($fields, true)); } }