Skip to content

Commit 36cfe49

Browse files
committed
monk, spelling
1 parent 66bcf91 commit 36cfe49

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Commands/OneTimeOperationShowCommand.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ protected function getOperationLinesForOutput(): Collection
7777
{
7878
$operationModels = Operation::all();
7979
$operationFiles = OneTimeOperationManager::getAllOperationFiles();
80-
8180
$operationOutputLines = collect();
8281

8382
// add disposed operations

src/Commands/OneTimeOperationsProcessCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@ protected function filterOperationsByTags(Collection $unprocessedOperationFiles)
211211

212212
protected function tagOptionsAreValid(): bool
213213
{
214-
// not tags provided
214+
// no tags provided
215215
if (empty($this->tags)) {
216216
return true;
217217
}
218218

219-
// all tags valid strings (not empty)
219+
// all tags are not empty
220220
if (count($this->tags) === count(array_filter($this->tags))) {
221221
return true;
222222
}
@@ -226,7 +226,7 @@ protected function tagOptionsAreValid(): bool
226226

227227
protected function syncOptionsAreValid(): bool
228228
{
229-
// to not use both options at the same time
229+
// do not use both options at the same time
230230
return ! ($this->forceAsync && $this->forceSync);
231231
}
232232
}

0 commit comments

Comments
 (0)