Broker Portal Documentation
Test environment test.brokerportal.sk.
Requirements
Everything from this section is required for every developer working on Broker Portal
Programming standards
- PSR-2 standard
- Written in english language (methods, variables, comments …)
- Everything have to be well documented in PHP DocBlock format
- Try to use Constants if possible
Coding tips
Tips which are not required but appricitated
- Use single quote
'instead of double qoute"(minor performance improvment) - Use
&&and||instead ofandandor - Use
$array[] = $iteminstead ofarray_push($array, $item)if you want to add only one item (minor performance improvment)