Skip to content

Commit

Permalink
[CodeQuality] Add fixture for skip never called (#6732)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik authored Feb 11, 2025
1 parent 91df614 commit fdac2e9
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

declare(strict_types=1);

namespace Rector\Tests\CodeQuality\Rector\ClassMethod\LocallyCalledStaticMethodToNonStaticRector\Fixture;

final class SkipNeverCalled
{
public function run()
{
}

private static function someStatic(): array
{
return [];
}
}

0 comments on commit fdac2e9

Please sign in to comment.