diff options
Diffstat (limited to 'lib/private/comments')
-rw-r--r-- | lib/private/comments/comment.php | 20 | ||||
-rw-r--r-- | lib/private/comments/manager.php | 20 | ||||
-rw-r--r-- | lib/private/comments/managerfactory.php | 20 |
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; |