mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
21 lines
382 B
Markdown
21 lines
382 B
Markdown
---
|
|
date: 2020-11-16
|
|
id: bf86be19-256d-408e-b26e-dcd30d4f1e39
|
|
title: Stack Decorators
|
|
---
|
|
|
|
# Description
|
|
|
|
Syntax to chain several decorators using a "stack".
|
|
|
|
# Syntax
|
|
|
|
``` php
|
|
services:
|
|
App\Mailer\Mailer:
|
|
stack:
|
|
- App\Mailer\LoggingMailer: ~
|
|
- App\Mailer\RateLimitedMailer:
|
|
arguments: [20]
|
|
- App\Mailer\Mailer: ~
|
|
```
|