Replies: 4 comments 2 replies
-
@riasvdv could you have a look? |
Beta Was this translation helpful? Give feedback.
-
I'm having the same issue. Brand new laravel/ciphersweet package install (v1.2, laravel 9) and running encrypt for the first time. It looks like paragonie/ciphersweet added the scalar check in v4.3.0. I don't see anyone reporting issues on paragonie/ciphersweet discussions though. I was able to get past that issue by specifying a previous version of paragonie/ciphersweet in my composer.json file, like: |
Beta Was this translation helpful? Give feedback.
-
I'd like to confirm the same observations as @AvenueShops above. I am also encountering the same error originally reported here. I was also able to work around the issue by specifying the older upstream package version. |
Beta Was this translation helpful? Give feedback.
-
I've created an issue on the upstream package. |
Beta Was this translation helpful? Give feedback.
-
after the last update if value of the desired column is null, the command throws an invalid type error:
this is my method in user model:
public static function configureCipherSweet(EncryptedRow $encryptedRow): void { $encryptedRow ->addField('email') ->addField('cellphone'); }
in the database cellphone is NULL
Beta Was this translation helpful? Give feedback.
All reactions