Created
December 16, 2025 11:07
-
-
Save deleugpn/2a27c6437e19a4bef071138a42fd4451 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php declare(strict_types=1); | |
| $iterator = ['foo', 'bar', 'baz']; | |
| foreach ($iterator as $key => $value) { | |
| } | |
| using (new ContextManager as $context) { | |
| } | |
| using ($manager = new ContextManager as $context) { | |
| } | |
| using (new ContextManager as $manager => $context) { | |
| } | |
| with (new ContextManager as $context) { | |
| } | |
| for using (new ContextManager as $context) { | |
| } | |
| try using (new ContextManager as $context) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment