You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
protected function hasMarker(string $value) : bool
Argument 1 passed to Shapecode\NYADoctrineEncryptBundle\Encryption\EntityEncryption::
hasMarker() must be of the type string, null given, called in /vendor/shapecode/nya-doctrine-encrypt-bundle/src/Encryption/EntityEncryption.php on line 93
Solution are:
check value before passing to that function
change signature of method in protected function hasMarker(?string $value) : bool
The text was updated successfully, but these errors were encountered:
This line, fail if
$value
is nullprotected function hasMarker(string $value) : bool
Solution are:
protected function hasMarker(?string $value) : bool
The text was updated successfully, but these errors were encountered: