Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Nov 6, 2018
1 parent 5aae13c commit 2c7c92a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 25 deletions.
5 changes: 1 addition & 4 deletions src/elements/actions/Delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
5 changes: 1 addition & 4 deletions src/elements/actions/DeleteAssets.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
6 changes: 1 addition & 5 deletions src/elements/actions/DeleteUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
5 changes: 1 addition & 4 deletions src/elements/actions/SetStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
5 changes: 1 addition & 4 deletions src/elements/actions/SuspendUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
5 changes: 1 addition & 4 deletions src/elements/actions/UnsuspendUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 2c7c92a

Please sign in to comment.