diff --git a/Token.php b/Token.php index aa696d4..2b796ee 100644 --- a/Token.php +++ b/Token.php @@ -102,7 +102,7 @@ public static function create($type, $name, $algorithm = null, $expire = null) $token->expire_at = $expire; } $token->created_at = new Expression('NOW()'); - $token->save(); + $token->save(false); return $token; }