Skip to content

Lineup Cascaded Calls doesn't work properly #563

Closed
@gjm

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

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