| 1 | <?php |
||
| 12 | trait HasReports |
||
| 13 | { |
||
| 14 | use RecordsTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param $name |
||
| 18 | * @param $params |
||
| 19 | */ |
||
| 20 | public function newReport($name, $params) |
||
| 24 | |||
| 25 | abstract protected function getReportsModelManager(); |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param $name |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function compileReportName($name) |
||
| 35 | } |
||
| 36 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.