У меня есть функции с очень длинными строками, я обычно делаю это
// <editor-fold defaultstate="collapsed" desc="Description (Example Execute)">
/**
*
* Execute the query
*
* Accepts an SQL string as input and returns a result object upon
* successful execution of a "read" type query. Returns boolean TRUE
* upon successful execution of a "write" type query. Returns boolean
* FALSE upon failure, and if the $db_debug variable is set to TRUE
* will raise an error.
*
* @param string $sql
* @param array $binds = FALSE An array of binding data
* @param bool $return_object = NULL
* @return mixed
*/
public function query($sql, $binds = FALSE, $return_object = NULL){
/* exmample code here */
}
// </editor-fold>
Надеюсь, это будет полезно :))