mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +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');
|
$now = (new \DateTime())->format('Y-m-d H:i:s');
|
||||||
$stmtParms = [
|
$stmtParms = [
|
||||||
':value' => null,
|
':value' => null,
|
||||||
':user_id' => $user->getId(),
|
':user_id' => $user ? $user->getId() : null,
|
||||||
':type' => $type,
|
':type' => $type,
|
||||||
':data' => $data,
|
':data' => $data,
|
||||||
':created' => $now,
|
':created' => $now,
|
||||||
':updated' => $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++) {
|
for($try=0; $try<1024; $try++) {
|
||||||
$stmtParms['value'] = $this->random->generateString(32, self::LETTERS_AND_NUMBERS);
|
$stmtParms['value'] = $this->random->generateString(32, self::LETTERS_AND_NUMBERS);
|
||||||
|
Reference in New Issue
Block a user