Skip to content

Broker Portal Documentation

Test environment test.brokerportal.sk.

Requirements

Everything from this section is required for every developer working on Broker Portal

Programming standards

Coding tips

Tips which are not required but appricitated

  • Use single quote ' instead of double qoute " (minor performance improvment)
  • Use && and || instead of and and or
  • Use $array[] = $item instead of array_push($array, $item) if you want to add only one item (minor performance improvment)