Hi, I found two issues when used:
-
cursor cannot be set
Because "string" == 0 will always returns true in PHP.
|
$this->cursor = $cursor == 0 ? 'initial' : $cursor; |
After setting $cursor will only be "initial".
-
error message is displayed directly when an exception occurs
|
dd($e->getAwsErrorMessage() ?: $e->getMessage()); |
Please help confirm, thanks.