plugin-php
plugin-php copied to clipboard
respect comment between `try`, `catch` and `finally`
Prettier 1.14.3
PHP Plugin 0.9.0
Same as for if, else if and else
Input:
// Comment
try {
return tap($callback($this), function () {
$this->commit();
});
}
// Comment
catch (FooException $e) {
throw $e;
}
// Comment
catch (BarException $e) {
throw $e;
}