[12.x] Add context remember functions by btaskew · Pull Request #56156 · laravel/framework · GitHub | Latest TMZ Celebrity News & Gossip | Watch TMZ Live
Skip to content

[12.x] Add context remember functions #56156

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 1, 2025

Conversation

btaskew
Copy link
Contributor

@btaskew btaskew commented Jun 27, 2025

Inspired by the Cache::remember function, adding Context::remember and Context::rememberHidden functions.

Context::remember will add the result of the provided closure function to the context if not already present, and always return the result

// Before
if (Context::has('user-permissions')) {
    $permissions = Context::get('user-permissions');
} else {
    $permissions = auth()->user()->permissions;
    Context::set('user-permissions', $permissions);
}

// After
$permissions = Context::remember('user-permissions', fn() => auth()->user()->permissions)

Useful when storing complicated values, or the result of DB queries, that you may need to access again elsewhere

@devajmeireles
Copy link
Contributor

I think this is useful and I don't know how the Context was released without this 😅 But the implementation should be improved. I mean, for example, instead of accepting only a closure as the value, we could accept a mixed value to be interpreted by the value helper function.

@btaskew
Copy link
Contributor Author

btaskew commented Jul 1, 2025

Have updated to use value helper as suggested

@taylorotwell taylorotwell merged commit 55f966c into laravel:12.x Jul 1, 2025
60 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.