We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
null !==
!
1 parent 107504c commit 048ae12Copy full SHA for 048ae12
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## NOT RELEASED
4
5
+### Changed
6
+
7
+- use strict comparison `null !==` instead of `!`
8
9
## 2.2.0
10
11
### Added
src/Result/ListQueuesResult.php
@@ -72,7 +72,7 @@ public function getQueueUrls(bool $currentPageOnly = false): iterable
72
$page = $this;
73
while (true) {
74
$page->initialize();
75
- if ($page->nextToken) {
+ if (null !== $page->nextToken) {
76
$input->setNextToken($page->nextToken);
77
78
$this->registerPrefetch($nextPage = $client->listQueues($input));
0 commit comments