A list of programming guidelines to follow for all BrickMMO related development.
All database naming conventions follow Laravel Eloquent conventions along with eplus. It is recommended to use the Laravel migration process for creation and upkeep of BrickMMO databases.
All GitHub repos should be created within the BrickMMO GitHub Organization and use the following process to develop:
Parentheses are placed om their own lines:
if ($value == true)
{
// Code to execute
}
Brackets following an if statement, loop, etc… have a space between the constructor and condition:
for (let i = 0; i < 3; i ++)
{
// Code to execute
}
This repo is available to view at
https://tidy.codeadam.ca.