This commit is contained in:
2026-06-10 18:22:27 +02:00
parent 7f31b63aaa
commit 83b475987c
50 changed files with 2550 additions and 11 deletions
@@ -0,0 +1,10 @@
---
globs: src/Logic/**/Models/*.php
description: This rule ensures consistent architectural separation by placing
all model files in their respective feature-specific directories within the
Logic layer. It prevents improper placement of models and enforces clear
organization based on features.
alwaysApply: true
---
All model files in the Logic layer must be placed within /src/Logic/[FeatureName]/Models directory, where [FeatureName] is a valid feature-specific subdirectory. If the FeatureName is unknown or ambiguous, developers must actively provide a proper feature name rather than defaulting to 'Unknown'.