Files
toolbox/.serena/memories/代码风格和约定.md
2025-12-18 10:19:11 +08:00

7 lines
406 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 代码风格和约定
- 缩进4 空格换行LF文件编码UTF-8`.editorconfig`)。
- PHP 风格:遵循 Laravel 默认代码风格,建议使用 Pint 格式化(`./vendor/bin/pint`)。
- 命名:遵循 Laravel 约定Model 在 `App\Models`Factory 在 `Database\Factories`,路由在 `routes/`)。
- EloquentModel 使用 `$fillable``$casts` 等标准写法。