amend
This commit is contained in:
parent
de9c242c2f
commit
ffd0addcec
|
@ -23,7 +23,7 @@ Or add the package to your `composer.json`.
|
|||
|
||||
```
|
||||
"require": {
|
||||
"meta-tech/silex-core" : "~1.0"
|
||||
"meta-tech/silex-core" : "^1.0"
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ class UserProvider implements UserProviderInterface
|
|||
}
|
||||
|
||||
/*!
|
||||
* @method loadUserPrograms
|
||||
* @method loadUserByRole
|
||||
* @public
|
||||
* @return Symfony\Component\Security\Core\User\User
|
||||
*/
|
||||
|
@ -76,24 +76,6 @@ class UserProvider implements UserProviderInterface
|
|||
return $this->pdo->exec('SELECT * FROM ' . $this->table . ' WHERE roles LIKE :role', compact('role'))->fetchAll();
|
||||
}
|
||||
|
||||
/*!
|
||||
* @method loadProgramKeys
|
||||
* @public
|
||||
* @return Symfony\Component\Security\Core\User\User
|
||||
*/
|
||||
public function loadProgramKeys()
|
||||
{
|
||||
$keys = [];
|
||||
$rows = $this->loadUserPrograms();
|
||||
$rows = array_merge($rows, $this->loadUserPrograms('INSURER'));
|
||||
if (!empty($rows)) {
|
||||
foreach ($rows as $row) {
|
||||
$keys[] = $row->key;
|
||||
}
|
||||
}
|
||||
return $keys;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @method loadUserByUsername
|
||||
* @public
|
||||
|
|
Loading…
Reference in New Issue
Block a user