Fix return value docblock for decrypt (#24611)

This commit is contained in:
Marcin Nabiałek 2018-06-15 17:47:03 +02:00 committed by Taylor Otwell
parent e726a939be
commit be13de48d0
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ class Encrypter implements EncrypterContract
*
* @param mixed $payload
* @param bool $unserialize
* @return string
* @return mixed
*
* @throws \Illuminate\Contracts\Encryption\DecryptException
*/

View File

@ -372,7 +372,7 @@ if (! function_exists('decrypt')) {
* Decrypt the given value.
*
* @param string $value
* @return string
* @return mixed
*/
function decrypt($value)
{