Skip to content

Commit 399ace7

Browse files
committed
wip
1 parent 8a472bf commit 399ace7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pennant.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,11 @@ Sometimes, it can be useful to purge an entire feature from storage. This is typ
559559
You may remove all stored values for a feature using the `purge` method:
560560

561561
```php
562+
// Purging a single feature...
562563
Feature::purge('new-api');
564+
565+
// Purging multiple features...
566+
Feature::purge(['new-api', 'purchase-button']);
563567
```
564568

565569
If you would like to purge _all_ features from storage, you may invoke the `purge` method without any arguments:
@@ -572,6 +576,8 @@ As it can be useful to purge features as part of your application's deployment p
572576

573577
```sh
574578
php artisan pennant:purge new-api
579+
580+
php artisan pennant:purge new-api purchase-button
575581
```
576582

577583
<a name="events"></a>

0 commit comments

Comments
 (0)