If you would like to contribute to this plugin:
- Create a fork of this repository.
- Checkout the
developbranch. This branch will always have the latest codes. - The
masterbranch will have the latest published codes. It will always be behind thedevelopbranch - All pull requests should be submitted to the
developbranch.
- Variable names should NOT begin with underscore ( _ )
- Variable names should be snake_case
- Function names should be camelCase
- Constants should be in capital letters
- Module classes should end with Module. e.g JobModule
- All PHP files should namespace humanid_spam_filter
- Php files in the lib/ directory are exempted from this rule
- Constructor should come immediately after class variables
- Private methods should follow the constructor
- Protected methods should follow private methods
- Public methods should follow protected methods