Skip to content

Commit

Permalink
Merge pull request #421 from AScriver/patch-1
Browse files Browse the repository at this point in the history
Create Timestamp.php
  • Loading branch information
ksvirkou-hubspot authored Oct 3, 2024
2 parents 26a3281 + 90af718 commit 43c3c3a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Utils/Timestamp.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace SevenShores\Hubspot\Utils;

class Timestamp
{
public static function getCurrentTimestampWithMilliseconds(): int
{
return intval(microtime(true) * 1000);
}
}

0 comments on commit 43c3c3a

Please sign in to comment.