diff --git a/context.md b/context.md index 5311eac076e..c20297aaa1a 100644 --- a/context.md +++ b/context.md @@ -136,6 +136,16 @@ Context::get('key'); // "first" ``` +Context also provides convenient methods for incrementing or decrementing a given key. Both of these methods accept at least one argument: the key to track. A second argument may be provided to specify the amount by which the key should be incremented or decremented: + +```php +Context::increment('records_added'); +Context::increment('records_added', 5); + +Context::decrement('records_added'); +Context::decrement('records_added', 5); +``` + #### Conditional Context