diff --git a/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php b/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php index 64e84e2e403a..d672f9ebb6fc 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php +++ b/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php @@ -179,7 +179,7 @@ trait HasAttributes /** * The encrypter instance that is used to encrypt attributes. * - * @var \Illuminate\Contracts\Encryption\Encrypter + * @var \Illuminate\Contracts\Encryption\Encrypter|null */ public static $encrypter; @@ -1289,7 +1289,7 @@ protected function castAttributeAsEncryptedString($key, $value) /** * Set the encrypter instance that will be used to encrypt attributes. * - * @param \Illuminate\Contracts\Encryption\Encrypter $encrypter + * @param \Illuminate\Contracts\Encryption\Encrypter|null $encrypter * @return void */ public static function encryptUsing($encrypter)