getProfileIds #
Returns the list of profile identifiers associated with this user.
Return Value #
Returns an array of strings, each a profile identifier associated with this user.
Usage #
<?php
use Kuzzle\Security\User;
// ...
/*
* @var $user User
*/
foreach($user->getProfileIds() as $profileId) {
}
Edit this page on Github(opens new window)