mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
fix for unit-testing on null user (to dig : why ?...)
This commit is contained in:
@@ -78,12 +78,12 @@ class TokenManipulator implements ManipulatorInterface
|
||||
$now = (new \DateTime())->format('Y-m-d H:i:s');
|
||||
$stmtParms = [
|
||||
':value' => null,
|
||||
':user_id' => $user->getId(),
|
||||
':user_id' => $user ? $user->getId() : null,
|
||||
':type' => $type,
|
||||
':data' => $data,
|
||||
':created' => $now,
|
||||
':updated' => $now,
|
||||
':expiration' => ($expiration === null ? null : $expiration->format('Y-m-d H:i:s'))
|
||||
':expiration' => $expiration ? $expiration->format('Y-m-d H:i:s') : null
|
||||
];
|
||||
for($try=0; $try<1024; $try++) {
|
||||
$stmtParms['value'] = $this->random->generateString(32, self::LETTERS_AND_NUMBERS);
|
||||
|
Reference in New Issue
Block a user