Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-08 01:05:43 +0300
committerbrantje <brantje@gmail.com>2016-10-08 01:05:43 +0300
commit724a3b33ff668eb63f9b04287d879ebf4a4c3707 (patch)
tree12ff8de6f292bbf151afeee18bcc74f244e249d7 /lib
parent80289b1a7147c833cc31a76d95db9028a50e50d6 (diff)
Fix travis errors in ShareService
Diffstat (limited to 'lib')
-rw-r--r--lib/Service/ShareService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/ShareService.php b/lib/Service/ShareService.php
index 2426ab13..fbfee8c9 100644
--- a/lib/Service/ShareService.php
+++ b/lib/Service/ShareService.php
@@ -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);
}