Skip to content

v0.6.0 - removing extra blank line

Choose a tag to compare

@krzysztofrewak krzysztofrewak released this 08 Oct 08:35
· 58 commits to main since this release
e96f41e

Fixes #25

Before
<?php

declare(strict_types=1);

$a = [
    1,
    2,

];

function b(): int
{
    $a = 1;

    return $a;

}

function c(int $a, int $b, int $c): int
{

    return $a + $b + $c;






}

$d = c(

    1,
    2,
    3,

);
After
<?php

declare(strict_types=1);

$a = [
    1,
    2,
];

function b(): int
{
    $a = 1;

    return $a;
}

function c(int $a, int $b, int $c): int
{
    return $a + $b + $c;
}

$d = c(
    1,
    2,
    3,
);