@@ -93,8 +93,6 @@ public function __construct(
9393
9494 /**
9595 * @NoCSRFRequired
96- *
97- * @return TemplateResponse
9896 */
9997 #[NoCSRFRequired]
10098 public function viewApps (): TemplateResponse {
@@ -141,9 +139,6 @@ private function getExAppsWithUpdates(): array {
141139 * Using the same algorithm of ExApps listing as for regular apps.
142140 * Returns all apps for a category from the App Store
143141 *
144- * @param string $requestedCategory
145- * @return array
146- *
147142 * @throws Exception
148143 */
149144 private function getAppsForCategory (string $ requestedCategory = '' ): array {
@@ -272,8 +267,6 @@ private function getAppsForCategory(string $requestedCategory = ''): array {
272267
273268 /**
274269 * @NoCSRFRequired
275- *
276- * @return JSONResponse
277270 */
278271 public function listApps (): JSONResponse {
279272 $ apps = $ this ->getAppsForCategory ('' );
@@ -431,9 +424,6 @@ public function enableApp(string $appId, array $groups = []): JSONResponse {
431424 * Deploy ExApp if it was not deployed yet.
432425 *
433426 * @PasswordConfirmationRequired
434- * @param array $appIds
435- * @param array $groups
436- * @return JSONResponse
437427 */
438428 public function enableApps (array $ appIds , array $ groups = []): JSONResponse {
439429 try {
@@ -584,10 +574,6 @@ private function registerApiScopes(ExApp $exApp, array $requestedExAppScopeGroup
584574
585575 /**
586576 * @PasswordConfirmationRequired
587- *
588- * @param string $appId
589- *
590- * @return JSONResponse
591577 */
592578 #[PasswordConfirmationRequired]
593579 public function disableApp (string $ appId ): JSONResponse {
@@ -596,10 +582,6 @@ public function disableApp(string $appId): JSONResponse {
596582
597583 /**
598584 * @PasswordConfirmationRequired
599- *
600- * @param array $appIds
601- *
602- * @return JSONResponse
603585 */
604586 #[PasswordConfirmationRequired]
605587 public function disableApps (array $ appIds ): JSONResponse {
@@ -705,12 +687,6 @@ public function enableExApp(string $appId): JSONResponse {
705687 ]);
706688 }
707689
708- /**
709- * @param ExApp $exApp
710- * @param SimpleXMLElement $infoXml
711- *
712- * @return void
713- */
714690 private function upgradeExAppScopes (ExApp $ exApp , SimpleXMLElement $ infoXml ): void {
715691 $ newExAppScopes = $ this ->service ->getExAppRequestedScopes ($ exApp , $ infoXml );
716692
@@ -751,9 +727,6 @@ public function uninstallApp(string $appId, bool $removeContainer = true, bool $
751727 * Using default force mechanism for ExApps
752728 *
753729 * @PasswordConfirmationRequired
754- *
755- * @param string $appId
756- * @return JSONResponse
757730 */
758731 #[PasswordConfirmationRequired]
759732 public function force (string $ appId ): JSONResponse {
@@ -764,17 +737,13 @@ public function force(string $appId): JSONResponse {
764737
765738 /**
766739 * Get all available categories
767- *
768- * @return JSONResponse
769740 */
770741 public function listCategories (): JSONResponse {
771742 return new JSONResponse ($ this ->getAllCategories ());
772743 }
773744
774745 /**
775746 * Get ExApp status, that includes initialization information
776- *
777- * @return JSONResponse
778747 */
779748 public function getAppStatus (string $ appId ): JSONResponse {
780749 $ exApp = $ this ->service ->getExApp ($ appId );
0 commit comments