* check if own report * * @param int $panoramaId * @return bool */
(int $panoramaId)
| 115 | * @return bool |
| 116 | */ |
| 117 | public function isOwn(int $panoramaId) { |
| 118 | $ownReport = $this->PanoramaMapper->readOwn($panoramaId); |
| 119 | if (!empty($ownReport)) { |
| 120 | return true; |
| 121 | } else { |
| 122 | return false; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * create new blank report |
no test coverage detected