spryker / code-sniffer

Spryker Code Sniffer
https://spryker.com
MIT License
36 stars 11 forks source link

Align class doc blocks #327

Closed stereomon closed 2 years ago

stereomon commented 2 years ago
<?php
/**
 * This file is part of the Spryker Suite.
 * For full license information, please view the LICENSE file that was distributed with this source code.
 */

namespace ...;

should be

<?php

/**
 * This file is part of the Spryker Suite.
 * For full license information, please view the LICENSE file that was distributed with this source code.
 */

namespace ...;
dereuromark commented 2 years ago

This is done via .license file, no? So if u add newlines there it is taken over correct?

stereomon commented 2 years ago

It's taken from the license file but when someone adds or removes a line manually the fixer doesn't fix it.