Skip to content

Update context.md #623

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 1 commit into from
Jul 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions context.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
git: 137c84001cb546324e63327cb0c08ca67d3cd5fc
git: fb9b29ddfb25f93eacf89abde158cb855bb6a5a0
---

# Контекст
Expand Down Expand Up @@ -242,14 +242,18 @@ $data = Context::all();
<a name="determining-item-existence"></a>
### Определение существования элемента

Вы можете использовать метод `has`, чтобы определить, имеет ли контекст какое-либо значение, сохраненное для данного ключа:
Вы можете использовать методы `has` и `missing`, чтобы определить, имеет ли контекст какое-либо значение, сохраненное для данного ключа:

```php
use Illuminate\Support\Facades\Context;

if (Context::has('key')) {
// ...
}

if (Context::missing('key')) {
// ...
}
```

Метод `has` вернет `true` независимо от сохраненного значения. Так, например, ключ со значением `null` будет считаться присутствующим:
Expand Down