Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lineup Cascaded Calls doesn't work properly #563

Closed
gjm opened this issue Aug 21, 2019 · 3 comments · Fixed by #572
Closed

Lineup Cascaded Calls doesn't work properly #563

gjm opened this issue Aug 21, 2019 · 3 comments · Fixed by #572

Comments

@gjm
Copy link

gjm commented Aug 21, 2019

This configuration variable has not effect. (at least from me). I'm using PSR-2 coding style. This piece of code is indented the same way regardless of the config setting:

public function foo()
{
    return $this->someMethod($parameter)
        ->otherMethod()
        ->finalMethod($otherParameter);
}

where, if Lineup Cascaded Calls is set, it should be:

public function foo()
{
    return $this->someMethod($parameter)
                ->otherMethod()
                ->finalMethod($otherParameter);
}
@zonuexe
Copy link
Member

zonuexe commented Sep 16, 2019

@gjm Thanks for reporting. It fixed in #572. Please reopen this issue if problem was not resolved.

@gjm
Copy link
Author

gjm commented Jan 14, 2020

@zonuexe I'm afraid the issue is not fixed. I'm using the latest melpa version (20200104.21) and it still doesn't indent correctly.

@gjm
Copy link
Author

gjm commented Sep 20, 2023

This issue still exists...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants