Skip to content

Commit

Permalink
Reverted to positive evaluation.
Browse files Browse the repository at this point in the history
  • Loading branch information
telkins committed Jan 2, 2021
1 parent 119fce2 commit 4fcee4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/Traits/IsDagManaged.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ protected function getDagService(): DagService

private function getIdsAsArray($ids): array
{
return ! is_array($ids) ? [$ids] : $ids;
return is_array($ids) ? $ids : [$ids];
}
}

0 comments on commit 4fcee4e

Please sign in to comment.