Skip to content

v1.6.0 - empty lines at the file header

Choose a tag to compare

@krzysztofrewak krzysztofrewak released this 10 Jun 13:09
· 40 commits to main since this release
717b521

As described in #67 and implemented in #76, from now we are enforcing a proper blank lines in every file "head section".

With these changes this:

<?php
declare(strict_types=1);
namespace Test;
class Test
{
}

will be fixed into:

<?php

declare(strict_types=1);

namespace Test;

class Test
{
}