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 0b4e017 commit b6fe3ffCopy full SHA for b6fe3ff
lib/internal/Magento/Framework/GraphQl/Query/IntrospectionConfiguration.php
@@ -33,10 +33,10 @@ public function __construct(
33
/**
34
* Check the the environment config to determine if introspection should be disabled.
35
*
36
- * @return int
+ * @return bool
37
*/
38
- public function isIntrospectionDisabled(): int
+ public function isIntrospectionDisabled(): bool
39
{
40
- return (int) $this->deploymentConfig->get(self::CONFIG_PATH_DISABLE_INTROSPECTION);
+ return (bool)$this->deploymentConfig->get(self::CONFIG_PATH_DISABLE_INTROSPECTION);
41
}
42
0 commit comments