Skip to content

Commit

Permalink
Add missing semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
rowan04 committed Aug 17, 2023
1 parent cda9175 commit 86c2469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/deploy/AddServiceGroupRoles.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}

// get roletype entity
$userRole = (string) $role->USER_ROLE
$userRole = (string) $role->USER_ROLE;
$dql = "SELECT rt FROM RoleType rt WHERE rt.name = :roleType";
$roleTypes = $entityManager->createQuery($dql)
->setParameter(':roleType', $userRole)
Expand All @@ -39,7 +39,7 @@
}

// Get user entity
$userDN = (string) $user->CERTDN
$userDN = (string) $user->CERTDN;
$dql = "SELECT u FROM User u JOIN u.userIdentifiers up WHERE up.keyValue = :keyValue";
$users = $entityManager->createQuery($dql)
->setParameter('keyValue', trim($userDN)
Expand Down

0 comments on commit 86c2469

Please sign in to comment.