You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document is a work in progress. When in doubt, follow the same style as existing ThinkTank code.
All Code
Lines should have no trailing whitespace at their end.
All indentation should not use tabs; use 4 spaces instead.
Comments, class, and variable names should use US English spelling.
Each file should contain exactly one class or interface.
Prefix filenames with class. for classes, and interface. for interfaces. For example, the CrawlerPlugin interface file is named interface.CrawlerPlugin.php. The User class file is named class.User.php.
Require_once statements should use single quotes, no parentheses, ie, require_once 'init.php';