Closed
Description
Indented
$arr = [
$this->something()
->something(),
];
$this->something()
->something();
expected
$arr = [
$this->something()
->something(),
];
$this->something()
->something();
config
(use-package php-mode
:ensure t
:config
(setq c-basic-offset 4)
(add-hook 'php-mode-hook 'php-enable-psr2-coding-style)
)
If the the result shown in expected
cannot become the default, how can I customize this with config?
Another example of this https://nova.laravel.com/docs/3.0/resources/fields.html#keyvalue-field
Metadata
Metadata
Assignees
Labels
No labels