Skip to content

Commit

Permalink
Add FeatureFlags provider
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesChou committed Jul 7, 2023
1 parent 215eba4 commit 0df0d81
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/Providers/FeatureFlagsServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Laravel\Pennant\Feature;

class FeatureFlagsServiceProvider extends ServiceProvider
{
public function boot(): void
{
}
}
1 change: 1 addition & 0 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@
App\Providers\AuthServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\FeatureFlagsServiceProvider::class,
App\Providers\RouteServiceProvider::class,

],
Expand Down

0 comments on commit 0df0d81

Please sign in to comment.