added coding approach

This commit is contained in:
tp_dhu 2025-03-24 01:16:59 +00:00
parent 4b45d94ebb
commit 2264882250

View File

@ -1,3 +1,16 @@
# Coding Approach
- Classes
- Class names should be in `CapitalCamelCase`
- Class functions will be in `camelCase`
- Functions
- Function variables will be in `snake_case`
- Arrays
- Array keys will be in `snake_case`
- SQL
- table names, and columns names will be in `snake_case`
- Don't repeat yourself (DRY)
- Each fucntion should have a single purpose
# tp_servicedesk # tp_servicedesk
A { service desk, ticket, knowledge base } web application written in PHP using fat free framework. A { service desk, ticket, knowledge base } web application written in PHP using fat free framework.