plugin-php
plugin-php copied to clipboard
Bug on Attributes!
@prettier/plugin-php v0.23.0 Playground link
Input:
<?php
new
#[Lazy]
#[Computed]
#[Title('Staff')]
class extends Component {
public $editing = [];
public $branches;
};
Output:
<?php
new #[Lazy] #[Computed] #[Title("Staff")] class extends Component {
public $editing = [];
public $branches;
};
I tried to figure out how to fix this broken attribute formatting, but I couldn't find any information about it.