summaryrefslogtreecommitdiffstats
path: root/lib/private/comments
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-12 15:02:16 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-12 15:02:18 +0100
commit682821c71ed2af297170294632931be1ac769f25 (patch)
tree468a0f4ef756ec0aab4492064d030d66baae2850 /lib/private/comments
parent60fbab493478614de59e1c9b5272d39c78036c66 (diff)
downloadnextcloud-server-682821c71ed2af297170294632931be1ac769f25.tar.gz
nextcloud-server-682821c71ed2af297170294632931be1ac769f25.zip
Happy new year!
Diffstat (limited to 'lib/private/comments')
-rw-r--r--lib/private/comments/comment.php20
-rw-r--r--lib/private/comments/manager.php20
-rw-r--r--lib/private/comments/managerfactory.php20
3 files changed, 57 insertions, 3 deletions
diff --git a/lib/private/comments/comment.php b/lib/private/comments/comment.php
index 219e7ec8e4b..1e1514a5872 100644
--- a/lib/private/comments/comment.php
+++ b/lib/private/comments/comment.php
@@ -1,5 +1,23 @@
<?php
-
+/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
namespace OC\Comments;
use OCP\Comments\IComment;
diff --git a/lib/private/comments/manager.php b/lib/private/comments/manager.php
index 09e59f28370..64013a9e11f 100644
--- a/lib/private/comments/manager.php
+++ b/lib/private/comments/manager.php
@@ -1,5 +1,23 @@
<?php
-
+/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
namespace OC\Comments;
use Doctrine\DBAL\Exception\DriverException;
diff --git a/lib/private/comments/managerfactory.php b/lib/private/comments/managerfactory.php
index 41978d0cf4b..c2a2e0b4891 100644
--- a/lib/private/comments/managerfactory.php
+++ b/lib/private/comments/managerfactory.php
@@ -1,5 +1,23 @@
<?php
-
+/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
namespace OC\Comments;
use OCP\Comments\ICommentsManager;