diff --git a/src/elements/actions/Delete.php b/src/elements/actions/Delete.php index 758c5ccb8a5..a6a694d5f8b 100644 --- a/src/elements/actions/Delete.php +++ b/src/elements/actions/Delete.php @@ -63,10 +63,7 @@ public function getConfirmationMessage() } /** - * Performs the action on any elements that match the given criteria. - * - * @param ElementQueryInterface $query The element query defining which elements the action should affect. - * @return bool Whether the action was performed successfully. + * @inheritdoc */ public function performAction(ElementQueryInterface $query): bool { diff --git a/src/elements/actions/DeleteAssets.php b/src/elements/actions/DeleteAssets.php index 9d6c56d25d9..4fd2d7c2d33 100644 --- a/src/elements/actions/DeleteAssets.php +++ b/src/elements/actions/DeleteAssets.php @@ -49,10 +49,7 @@ public function getConfirmationMessage() } /** - * Performs the action on any elements that match the given criteria. - * - * @param ElementQueryInterface $query The element query defining which elements the action should affect. - * @return bool Whether the action was performed successfully. + * @inheritdoc */ public function performAction(ElementQueryInterface $query): bool { diff --git a/src/elements/actions/DeleteUsers.php b/src/elements/actions/DeleteUsers.php index 7541e6e7c40..1b26d0bf2d8 100644 --- a/src/elements/actions/DeleteUsers.php +++ b/src/elements/actions/DeleteUsers.php @@ -105,11 +105,7 @@ public function getTriggerHtml() } /** - * Performs the action on any elements that match the given criteria. - * - * @param ElementQueryInterface $query The element query defining which elements the action should affect. - * @return bool Whether the action was performed successfully. - * @throws Exception + * @inheritdoc */ public function performAction(ElementQueryInterface $query): bool { diff --git a/src/elements/actions/SetStatus.php b/src/elements/actions/SetStatus.php index a45384219b1..813b1954e0e 100644 --- a/src/elements/actions/SetStatus.php +++ b/src/elements/actions/SetStatus.php @@ -89,10 +89,7 @@ public function getTriggerHtml() } /** - * Performs the action on any elements that match the given criteria. - * - * @param ElementQueryInterface $query The element query defining which elements the action should affect. - * @return bool Whether the action was performed successfully. + * @inheritdoc */ public function performAction(ElementQueryInterface $query): bool { diff --git a/src/elements/actions/SuspendUsers.php b/src/elements/actions/SuspendUsers.php index 80adb5d6220..3fa1afd8df6 100644 --- a/src/elements/actions/SuspendUsers.php +++ b/src/elements/actions/SuspendUsers.php @@ -67,10 +67,7 @@ public function getTriggerHtml() } /** - * Performs the action on any elements that match the given criteria. - * - * @param ElementQueryInterface $query The element query defining which elements the action should affect. - * @return bool Whether the action was performed successfully. + * @inheritdoc */ public function performAction(ElementQueryInterface $query): bool { diff --git a/src/elements/actions/UnsuspendUsers.php b/src/elements/actions/UnsuspendUsers.php index 0b2c24fc9fd..9cc6af9df9c 100644 --- a/src/elements/actions/UnsuspendUsers.php +++ b/src/elements/actions/UnsuspendUsers.php @@ -32,10 +32,7 @@ public function getTriggerLabel(): string } /** - * Performs the action on any elements that match the given criteria. - * - * @param ElementQueryInterface $query The element query defining which elements the action should affect. - * @return bool Whether the action was performed successfully. + * @inheritdoc */ public function performAction(ElementQueryInterface $query): bool {