addRole() public method

Adds a role to this account
public addRole ( Role $role ) : void
$role Neos\Flow\Security\Policy\Role
return void
 /**
  * @test
  */
 public function addRoleSkipsRoleIfAssigned()
 {
     $this->account->setRoles([$this->administratorRole]);
     $this->account->addRole($this->administratorRole);
     $this->assertCount(1, $this->account->getRoles());
 }
 /**
  * Adds the specified role to the given account and potentially carries out further actions which are needed to
  * properly reflect these changes.
  *
  * @param Account $account The account to add roles to
  * @param string $roleIdentifier A fully qualified role identifier, or a role identifier relative to the Neos.Neos namespace
  * @return integer How often this role has been added to the given account (effectively can be 1 or 0)
  * @api
  */
 public function addRoleToAccount(Account $account, $roleIdentifier)
 {
     $roleIdentifier = $this->normalizeRoleIdentifier($roleIdentifier);
     $role = $this->policyService->getRole($roleIdentifier);
     if (!$account->hasRole($role)) {
         $account->addRole($role);
         $this->accountRepository->update($account);
         $this->emitRolesAdded($account, array($role));
         return 1;
     }
     return 0;
 }