Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed Oct 8, 2024
1 parent 90363c3 commit ba44c0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Front/Docs/Content/framework/02-the-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,9 @@ Now you can use this group of validators as a normal tagged value in your contai
```php
final readonly class BookController
{
public function __constructor(#[Tagged('book-validators') private readonly array $contentValidators) { /* … */ }
public function __constructor(
#[Tagged('book-validators')] private readonly array $contentValidators,
) { /* … */ }
}
```

Expand Down

0 comments on commit ba44c0a

Please sign in to comment.