Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 438 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 438 Bytes

#引用文件# 统一使用 require_once | include_once

#命名后缀#

  • Exception命名 FileNotFoundException
  • Controller命名 OrderController
  • Filter命名 AclFilter
  • service XxxService

#Contract约定#

  • interface
  • abstract class mv out
  • mv out base class

#测试约定#

#http路由规则#

  • 3层内规则
    • module
    • controller
    • action
  • 多于3层
    • 无默认值
    • 依赖路由做分发

#异常约定#