public function Role::revokePermission in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::revokePermission()
 - 9 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::revokePermission()
 
Revokes a permissions from the user role.
Parameters
string $permission: The permission to revoke.
Return value
$this
Overrides RoleInterface::revokePermission
File
- core/
modules/ user/ src/ Entity/ Role.php, line 142  
Class
- Role
 - Defines the user role entity class.
 
Namespace
Drupal\user\EntityCode
public function revokePermission($permission) {
  if ($this
    ->isAdmin()) {
    return $this;
  }
  $this->permissions = array_diff($this->permissions, [
    $permission,
  ]);
  return $this;
}