Files
icehrm/ext/admin/reports/reportClasses/OvertimeSummaryReport.php
T

10 lines
250 B
PHP

<?php
if(!interface_exists('OvertimeReport')){
include_once APP_BASE_PATH.'admin/reports/reportClasses/OvertimeReport.php';
}
class OvertimeSummaryReport extends OvertimeReport{
protected function isAggregated(){
return true;
}
}