Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/structarmed/src/Rule/InternalClassMustBeFinalRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Testo\Tools\StructArmed\Rule;

use Boundwize\StructArmed\Analyser\ClassNode;
use Boundwize\StructArmed\Rule\RuleInterface;
use Boundwize\StructArmed\Rule\ExtendedClassAwareRuleInterface;
use Boundwize\StructArmed\Rule\RuleViolation;
use Testo\Tools\StructArmed\Support\ClassAnnotations;

Expand All @@ -14,7 +14,7 @@
* may rely on it, so leaving it open only invites accidental extension. @api classes
* are deliberately exempt — they may stay open for downstream subclassing.
*/
final readonly class InternalClassMustBeFinalRule implements RuleInterface
final readonly class InternalClassMustBeFinalRule implements ExtendedClassAwareRuleInterface
{
public function __construct(
private string $layer,
Expand Down