Skip to content

Lineup Cascaded Calls doesn't work properly #563

Description

@gjm

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);
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions