-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AIDAPP-288] & [AIDAPP-274] & [AIDAPP-275]: Switch to class based fea…
…ture flagging (#258) * Switch to class based Feature Flags Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> * Ensure Feature Flags are not purged Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> * Remove the Portal View Count Feature Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> * Update Feature Flagging docs Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> * Add additional PR templates notes Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> * Update some wording Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> * chore: fix enforcement of copyright on all files * chore: fix code style --------- Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com> Co-authored-by: joelicatajr <joelicatajr@users.noreply.github.com>
- Loading branch information
1 parent
d3b7df5
commit 03edbf0
Showing
10 changed files
with
54 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace {{ namespace }}; | ||
|
||
use App\Features\AbstractFeatureFlag; | ||
|
||
class {{ class }} extends AbstractFeatureFlag | ||
{ | ||
public function resolve(mixed $scope): mixed | ||
{ | ||
return false; | ||
} | ||
} |