PATH:
home
/
nappmpmd
/
mamza.xyz
/
wp-content
/
plugins
/
adfoxly
/
vendor
/
bugsnag
/
bugsnag
/
src
<?php namespace Bugsnag; interface FeatureDataStore { /** * Add a single feature flag. * * @param string $name * @param string|null $variant * * @return void */ public function addFeatureFlag($name, $variant = null); /** * Add multiple feature flags. * * The new flags will be merged with any existing feature flags, with the * newer variant values taking precedence * * @param array $featureFlags * @phpstan-param list<FeatureFlag> $featureFlags * * @return void */ public function addFeatureFlags(array $featureFlags); /** * Remove a single feature flag by name. * * @param string $name * * @return void */ public function clearFeatureFlag($name); /** * Remove all feature flags. * * @return void */ public function clearFeatureFlags(); }
[+]
Callbacks
[-] Configuration.php
[edit]
[+]
..
[-] FeatureDataStore.php
[edit]
[-] Client.php
[edit]
[-] Pipeline.php
[edit]
[+]
Middleware
[-] Stacktrace.php
[edit]
[+]
Breadcrumbs
[+]
DateTime
[+]
Request
[-] HttpClient.php
[edit]
[-] SessionTracker.php
[edit]
[+]
Shutdown
[-] Utils.php
[edit]
[-] Report.php
[edit]
[-] Env.php
[edit]
[-] ErrorTypes.php
[edit]
[-] FeatureFlag.php
[edit]
[+]
Internal
[-] Handler.php
[edit]