* rename report * * @param int $reportId * @param string $name * @return bool */
(int $reportId, string $name)
| 625 | * @return bool |
| 626 | */ |
| 627 | public function rename(int $reportId, string $name) { |
| 628 | if ($this->isOwn($reportId)) { |
| 629 | return $this->ReportMapper->updateName($reportId, $name); |
| 630 | } |
| 631 | return false; |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * search for reports |
nothing calls this directly
no test coverage detected