Currently, this is considered incorrect code style:
array_map( function ( $x ) { return $this->format( $x ); }, $array );but this is ok:
array_map( function ( $x ) { return $this->format( $x );
}, $array );Actually, latest formatting is made by phpcb, which is part of phpcs.
Something should be fixed to disallow former style of formatting and make phpcb format it in a nice way.