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.
2 parents 5670b74 + 4213d6e commit 17dae68Copy full SHA for 17dae68
composer.json
@@ -13,7 +13,7 @@
13
"minimum-stability": "stable",
14
"require": {
15
"php": ">=5.6",
16
- "guzzlehttp/guzzle": "^6.3"
+ "guzzlehttp/guzzle": "^6.3|^7.2"
17
},
18
"autoload": {
19
"psr-4": { "ClickUp\\": "src/ClickUp/" }
src/ClickUp/Objects/AbstractObjectCollection.php
@@ -74,7 +74,7 @@ public function getByName($name)
74
*/
75
public function objects()
76
{
77
- return $this->objects;
+ return $this->objects ?? [];
78
}
79
80
/**
0 commit comments