senzacionale
senzacionale

Reputation: 20936

JetBrains PhpStorm code formatter problem

I have problem with phpStorm and code formatter

<?php
function foo()
{
    if ($x > 5) {
        echo "bar";
    }
    return
            "string";
}

where can i change that formater will change

if ($x > 5) {
            echo "bar";
        }

to

if ($x > 5) 
{
            echo "bar";
        }

Upvotes: 0

Views: 1479

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402493

Settings | Code Style | PHP | Wrapping and Braces, Braces placement
Other: Next line.

Upvotes: 4

Related Questions