Skip to content

String concatenation #152

Description

@czosel

Input:

            $this->view->textareaContentId = 'a' . $activationId . 'n' . $noticeTypeId;

Output:

            $this->view->textareaContentId = 'a' .
            $activationId .
            'n' .
            $noticeTypeId;

I'd suggest

            $this->view->textareaContentId = 
                 'a' . $activationId . 'n' . $noticeTypeId;

or (for longer cases)

            $this->view->textareaContentId = 'a' .
                $activationId .
                'n' .
                $noticeTypeId;

Metadata

Metadata

Assignees

Labels

Type

No type

Fields

No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions