@@ -72,9 +72,9 @@ public function getAppEventsConfig(): ?GraphApplicationEventsConfig
72
72
return $ this ->getField ('app_events_config ' );
73
73
}
74
74
75
- public function isAppInstallTracked (): bool
75
+ public function isAppInstallTracked (): ? bool
76
76
{
77
- return ( bool ) $ this ->getField ('app_install_tracked ' );
77
+ return $ this ->getField ('app_install_tracked ' );
78
78
}
79
79
80
80
public function getAppName (): ?string
@@ -107,9 +107,9 @@ public function getAuthReferralDefaultActivityPrivacy(): ?string
107
107
return $ this ->getField ('auth_referral_default_activity_privacy ' );
108
108
}
109
109
110
- public function isAuthReferralEnabled (): bool
110
+ public function isAuthReferralEnabled (): ? bool
111
111
{
112
- return ( bool ) $ this ->getField ('auth_referral_enabled ' );
112
+ return $ this ->getField ('auth_referral_enabled ' );
113
113
}
114
114
115
115
/**
@@ -141,9 +141,9 @@ public function getAuthReferralUserPermissions(): ?array
141
141
return $ this ->getField ('auth_referral_user_perms ' );
142
142
}
143
143
144
- public function isCanvasFluidHeight (): bool
144
+ public function isCanvasFluidHeight (): ? bool
145
145
{
146
- return ( bool ) $ this ->getField ('canvas_fluid_height ' );
146
+ return $ this ->getField ('canvas_fluid_height ' );
147
147
}
148
148
149
149
public function getCanvasFluidWidth (): ?int
@@ -171,9 +171,9 @@ public function getCompany(): ?string
171
171
return $ this ->getField ('company ' );
172
172
}
173
173
174
- public function isConfigurediOSSSO (): bool
174
+ public function isConfigurediOSSSO (): ? bool
175
175
{
176
- return ( bool ) $ this ->getField ('configured_ios_sso ' );
176
+ return $ this ->getField ('configured_ios_sso ' );
177
177
}
178
178
179
179
public function getContactEmail (): ?string
@@ -239,14 +239,14 @@ public function getiOSBundleIds(): ?array
239
239
return $ this ->getField ('ios_bundle_id ' );
240
240
}
241
241
242
- public function iOSSupportsNativeProxyAuthFlow (): bool
242
+ public function iOSSupportsNativeProxyAuthFlow (): ? bool
243
243
{
244
- return ( bool ) $ this ->getField ('ios_supports_native_proxy_auth_flow ' );
244
+ return $ this ->getField ('ios_supports_native_proxy_auth_flow ' );
245
245
}
246
246
247
- public function iOSSupportsSystemAuth (): bool
247
+ public function iOSSupportsSystemAuth (): ? bool
248
248
{
249
- return ( bool ) $ this ->getField ('ios_supports_system_auth ' );
249
+ return $ this ->getField ('ios_supports_system_auth ' );
250
250
}
251
251
252
252
public function getiPadAppStoreId (): ?string
@@ -375,9 +375,9 @@ public function getServerIPWhitelist(): ?string
375
375
return $ this ->getField ('server_ip_whitelist ' );
376
376
}
377
377
378
- public function isSocialDiscovery (): bool
378
+ public function isSocialDiscovery (): ? bool
379
379
{
380
- return ( bool ) $ this ->getField ('social_discovery ' );
380
+ return $ this ->getField ('social_discovery ' );
381
381
}
382
382
383
383
public function getSubcategory (): ?string
0 commit comments