Skip to content

Commit

Permalink
Merge pull request #91 from auraphp/doc
Browse files Browse the repository at this point in the history
Remove methods that are no longer existing
  • Loading branch information
harikt authored Sep 23, 2023
2 parents 84be822 + 4ce0d3f commit 377718f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ Using `getFlash()` returns only the values that are available now from having be

#### Keeping and Clearing Flash Values

Sometimes we will want to keep the flash values in the current request for the next request. We can do so on a per-segment basis by calling the _Segment_ `keepFlash()` method, or we can keep all flashes for all segments by calling the _Session_ `keepFlash()` method.
Sometimes we will want to keep the flash values in the current request for the next request. We can do so on a per-segment basis by calling the _Segment_ `keepFlash()` method.

Similarly, we can clear flash values on a per-segment basis or a session-wide bases. Use the `clearFlash()` method on the _Segment_ to clear flashes just for that segment, or the same method on the _Session_ to clear all flash values for all segments.
Similarly, we can clear flash values just for that _Segment_ with `clearFlash()` method.

### Lazy Session Starting

Expand Down

0 comments on commit 377718f

Please sign in to comment.