Fix travis errors in ShareService

This commit is contained in:
brantje 2016-10-08 00:05:43 +02:00
parent 80289b1a71
commit 724a3b33ff
No known key found for this signature in database
GPG key ID: 5FF1D117F918687F

View file

@ -71,7 +71,7 @@ class ShareService {
}
public function createACLEntry(SharingACL $acl) {
if ($acl->getCreated() == null) $acl->setCreated((new \DateTime())->getTimestamp());
if ($acl->getCreated() === null) $acl->setCreated((new \DateTime())->getTimestamp());
return $this->sharingACL->createACLEntry($acl);
}