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.
1 parent 84a8141 commit c2b1389Copy full SHA for c2b1389
dev/tests/integration/testsuite/Magento/GraphQl/App/State/CollectedObject.php
@@ -37,15 +37,15 @@ public function getObjectId() : int
37
return $this->objectId;
38
}
39
40
- public static function getSkippedObject()
+ public static function getSkippedObject() : CollectedObject
41
{
42
if (!self::$skippedObject) {
43
self::$skippedObject = new CollectedObject('(skipped)', [], 0);
44
45
return self::$skippedObject;
46
47
48
- public static function getRecursionEndObject()
+ public static function getRecursionEndObject() : CollectedObject
49
50
if (!self::$recursionEndObject) {
51
self::$recursionEndObject = new CollectedObject('(end of recursion level)', [], 0);
0 commit comments