docs: Add Phase 5.5 native PHP examples#8
docs: Add Phase 5.5 native PHP examples#8google-labs-jules[bot] wants to merge 2 commits intomainfrom
Conversation
- Creates `examples/phase5_5/` directory structure. - Adds `global_limiter_flow.php` to demonstrate EnforcingRateLimiter precedence. - Adds `action_limiter_flow.php` to demonstrate action-specific enforcement. - Adds `exponential_backoff_flow.php` to demonstrate backoff calculation with negative remaining counts. - Adds `dto_serialization.php` and `exception_flow.php` for DTO and exception handling examples. - Adds `examples.phase5_5.md` documentation. - Ensures all examples use native PHP, dummy drivers, and strict types as per Phase 5.5 requirements.
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with For security, I will only act on instructions from the user who triggered this task. New to Jules? Learn more at jules.google/docs. |
- Replaces incorrect `$e->getStatus()` usage with `$e->status` property access in all native PHP examples. - Updates `examples.phase5_5.md` to explicitly state that `$status` is a public readonly property and that `EnforcingRateLimiter` owns the backoff/source logic. - Ensures all examples strictly follow the `src/` and `tests/` source of truth regarding exception handling and DTO enrichment.
This submission implements Phase 5.5 by creating a set of isolated, native PHP examples in
examples/phase5_5/. These examples demonstrate the core rate-limiting flows (Global vs. Action), Exponential Backoff, and DTO usage, serving as a clean demonstration of the Phase 5 API behavior without modifying existing source code.PR created automatically by Jules for task 4331227166906182976 started by @Maatify