*
* @return null|string
*/
- function whereClause(&$field, $op,
- $value, $min, $max
+ function whereClause(
+ &$field, $op,
+ $value, $min, $max
) {
$type = CRM_Utils_Type::typeToString(CRM_Utils_Array::value('type', $field));
*
* @return null|string
*/
- function dateClause($fieldName,
- $relative, $from, $to, $type = NULL, $fromTime = NULL, $toTime = NULL
+ function dateClause(
+ $fieldName,
+ $relative, $from, $to, $type = NULL, $fromTime = NULL, $toTime = NULL
) {
$clauses = array();
if (in_array($relative, array_keys($this->getOperationPair(CRM_Report_Form::OP_DATE)))) {
* @param $awardedGrantsAmount
* @param bool $customData
*/
- static function getStatistics(&$grantStatistics, $fieldValue, $values,
- $awardedGrants, $awardedGrantsAmount, $customData = FALSE
+ static function getStatistics(
+ &$grantStatistics, $fieldValue, $values,
+ $awardedGrants, $awardedGrantsAmount, $customData = FALSE
) {
if (!$awardedGrantsAmount) {
return;
* Retrieve all the values that match the current input parameters
* Used by the selector
*/
- function all($offset = 0, $rowcount = 0, $sort = NULL,
+ function all(
+ $offset = 0, $rowcount = 0, $sort = NULL,
$includeContactIDs = FALSE
);