2072 / PHP-Indenting-for-VIm

The official VIm indent script for PHP
http://www.2072productions.com/to/phpindent.txt
128 stars 29 forks source link

indent issue for anonymous class #55

Closed taoso closed 7 years ago

taoso commented 7 years ago

we now get

<?php
function foo()
{
    return new class extends StdClass
{
    public function hi()
    {
    }
}
}

but we want

<?php
function foo()
{
    return new class extends StdClass
    {
    public function hi()
    {
    }
    }
}