diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-09-23 18:20:04 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-09-26 11:55:43 +0200 |
commit | dcc23114e9328d822539782644bedcf5cba7e72d (patch) | |
tree | ce2a4923c5e58675c1ac9e8452e5750ac5439e89 /apps/dav/lib/CalDAV | |
parent | 9c75b00850f940993fc5f6e5bb52bccf58b43023 (diff) | |
download | nextcloud-server-dcc23114e9328d822539782644bedcf5cba7e72d.tar.gz nextcloud-server-dcc23114e9328d822539782644bedcf5cba7e72d.zip |
fix annotations & copyright headers
Diffstat (limited to 'apps/dav/lib/CalDAV')
-rw-r--r-- | apps/dav/lib/CalDAV/Publishing/PublishPlugin.php | 22 | ||||
-rw-r--r-- | apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php | 20 |
2 files changed, 39 insertions, 3 deletions
diff --git a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php index 241e5260c70..199bc67e615 100644 --- a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php +++ b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php @@ -1,5 +1,23 @@ <?php - +/** + * @author Thomas Citharel <tcit@tcit.fr> + * + * @copyright Copyright (c) 2016 Thomas Citharel <tcit@tcit.fr> + * @license GNU AGPL version 3 or any later version + * + * 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 OCA\DAV\CalDAV\Publishing; use Sabre\DAV\PropFind; @@ -116,7 +134,7 @@ class PublishPlugin extends ServerPlugin { * @param RequestInterface $request * @param ResponseInterface $response * - * @return null|bool + * @return void|bool */ public function httpPost(RequestInterface $request, ResponseInterface $response) { $path = $request->getPath(); diff --git a/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php b/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php index 375954ffaf3..1fdba22e9e0 100644 --- a/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php +++ b/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php @@ -1,5 +1,23 @@ <?php - +/** + * @author Thomas Citharel <tcit@tcit.fr> + * + * @copyright Copyright (c) 2016 Thomas Citharel <tcit@tcit.fr> + * @license GNU AGPL version 3 or any later version + * + * 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 OCA\DAV\CalDAV\Publishing\Xml; use OCA\DAV\CalDAV\Publishing\PublishPlugin as Plugin; |