Skip to content

Commit fe8aa69

Browse files
committed
Merge pull request parse-community#119 from ParsePlatform/gFosco.fb-datetime
Added missing backslash to DateTime usage.
2 parents c99230a + 45dc33a commit fe8aa69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parse/ParseUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public static function logInWithFacebook($id, $access_token, $expiration_date =
167167
);
168168
}
169169
if (!$expiration_date) {
170-
$expiration_date = new DateTime();
170+
$expiration_date = new \DateTime();
171171
$expiration_date->setTimestamp(time() + 86400 * 60);
172172
}
173173
$data = ["facebook" => [

0 commit comments

Comments
 (0)