Skip to content

Instantly share code, notes, and snippets.

@yatsenkolesh
Created June 21, 2022 15:17
<?php
declare(strict_types = 1);
namespace App\Http\Controllers;
use Abrouter\Client\Client;
class ExampleFeatureFlagsController
{
public function __invoke(Client $client)
{
$enabledButtonFeatureFlag = $client->featureFlags()
->run('enabled_button_feature_flag');
$disabledButtonFeatureFlag = $client->featureFlags()
->run('disabled_button_feature_flag');
return view(
'featureFlags',
[
'enabledButtonFeatureFlag' => $enabledButtonFeatureFlag,
'disabledButtonFeatureFlag' => $disabledButtonFeatureFlag,
]
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment