| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 45 | function logsDaily($params) { |
||
| 46 | $params['logs'][] = array('sql' => $this->_dao->getSqlStatementForLogsDaily($params['group_id'], $params['logs_cond']), |
||
| 47 | 'field' => $GLOBALS['Language']->getText('plugin_git', 'logsdaily_field'), |
||
| 48 | 'title' => $GLOBALS['Language']->getText('plugin_git', 'logsdaily_title')); |
||
| 49 | } |
||
| 50 | } |
||
| 51 | ?> |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.