Skip to content

Commit a879958

Browse files
committed
Merge pull request facebookarchive#537 from yguedidi/patch-1
Missing return statement
2 parents 8d74588 + f2dfdc1 commit a879958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Facebook/PersistentData/PersistentDataFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static function createPersistentDataHandler($handler)
5454
}
5555

5656
if ('session' === $handler) {
57-
new FacebookSessionPersistentDataHandler();
57+
return new FacebookSessionPersistentDataHandler();
5858
}
5959
if ('memory' === $handler) {
6060
return new FacebookMemoryPersistentDataHandler();

0 commit comments

Comments
 (0)