prettier / prettier/plugin-php
Symfony #[Route] Formatting Bug
Open
Nobody has claimed this yet.
psr compat
- Dominant language
- PHP
- Stars
- 1.9k
- Forks
- 139
- PR merge metrics
- No merged PRs in 30d
Description
The formatting of #[Route] lines are broken, I think. It tends to spread out over multiple lines when it could neatly fit into just one.
Input
#[Route('route/path', name: 'very_very_very_very_very_very_long_route_name', methods: ['GET'])]
Output
#[
Route('
'route/path',
name: 'very_very_very_very_very_very_long_route_name',
methods: ['GET']
)
]
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the issue using the provided #[Route] input and compare the formatter's output. Trace the formatting entry point for PHP attributes and determine how the example can remain on one line; done means the shown input formats without the unnecessary multiline expansion.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- php
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100