mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-23 13:39:48 +05:30
Added code coverage blocks
This commit is contained in:
parent
c89a2346a8
commit
4a50af333d
@ -13,7 +13,9 @@ class SecureKey
|
|||||||
|
|
||||||
// We want to stop execution if the key fails because, well, that is bad.
|
// We want to stop execution if the key fails because, well, that is bad.
|
||||||
if ($bytes === false || $strong === false) {
|
if ($bytes === false || $strong === false) {
|
||||||
|
// @codeCoverageIgnoreStart
|
||||||
throw new \Exception('Error Generating Key');
|
throw new \Exception('Error Generating Key');
|
||||||
|
// @codeCoverageIgnoreEnd
|
||||||
}
|
}
|
||||||
|
|
||||||
return substr(str_replace(array('/', '+', '='), '', base64_encode($bytes)), 0, $len);
|
return substr(str_replace(array('/', '+', '='), '', base64_encode($bytes)), 0, $len);
|
||||||
|
Loading…
Reference in New Issue
Block a user