Coding standard - abrar-yasir95/CSE327_Project_Fall_2020 GitHub Wiki
the main language we are going to use in our project.
PHP language Laravel Framework
Naming conventions:
Variable name: Variable name should be in lower case. For multiple words, "new_admin_add" is an example.
Constants Name: Constants are usually defined on a module level and written in all capital letters with underscores separating words.
Exceptions: Because exceptions should be classes, the class naming convention applies here. However, you should use the suffix “Error” on your exception names (if the exception actually is an error).