Skip to content

Commit

Permalink
Merge pull request #210 from TheDragonCode/3.x
Browse files Browse the repository at this point in the history
Removed `LaravelPhpdocAlignmentFixer`
  • Loading branch information
andrey-helldar authored Feb 10, 2024
2 parents 0db0a7c + 446a88d commit 2d55d8b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions app/Factories/ConfigurationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace DragonCode\CodeStyler\Factories;

use App\Factories\ConfigurationFactory as BaseFactory;
use App\Fixers\LaravelPhpdocAlignmentFixer;
use DragonCode\CodeStyler\Fixers\JsonFixer;
use DragonCode\CodeStyler\Fixers\JsonRiskyFixer;
use DragonCode\CodeStyler\Fixers\XmlFixer;
Expand Down Expand Up @@ -64,8 +63,6 @@ public static function preset($rules): ConfigInterface
new JsonRiskyFixer(),
new YamlFixer(),
new XmlFixer(),
// Laravel...
new LaravelPhpdocAlignmentFixer(),
// PhpCsFixerCustomFixers...
new DeclareAfterOpeningTagFixer(),
new MultilineCommentOpeningClosingAloneFixer(),
Expand Down
3 changes: 0 additions & 3 deletions resources/presets/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

declare(strict_types=1);

use App\Fixers\LaravelPhpdocAlignmentFixer;
use DragonCode\CodeStyler\Fixers\JsonFixer;
use DragonCode\CodeStyler\Fixers\YamlFixer;
use PedroTroller\CS\Fixer\DeadCode\UselessCodeAfterReturnFixer;
Expand Down Expand Up @@ -251,8 +250,6 @@
(new JsonFixer())->getName() => true,
(new YamlFixer())->getName() => true,

(new LaravelPhpdocAlignmentFixer())->getName() => true,

(new UselessCodeAfterReturnFixer())->getName() => true,

MultilineCommentOpeningClosingAloneFixer::name() => true,
Expand Down

0 comments on commit 2d55d8b

Please sign in to comment.