Skip to content

Commit 47fd1aa

Browse files
authored
Merge pull request #98 from localheinz/fix/case
Fix: Case mismatch in method call
2 parents 06b12c4 + 5567c1c commit 47fd1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaunchDarkly/Util.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Util
1414
*/
1515
public static function dateTimeToUnixMillis($dateTime)
1616
{
17-
$timeStampSeconds = (int)$dateTime->getTimeStamp();
17+
$timeStampSeconds = (int)$dateTime->getTimestamp();
1818
$timestampMicros = $dateTime->format('u');
1919
return $timeStampSeconds * 1000 + (int)($timestampMicros / 1000);
2020
}

0 commit comments

Comments
 (0)