clean up apigen errors (closes: #85)

This commit is contained in:
Florian Schlichting 2016-12-29 21:37:46 +01:00
parent 701feb6143
commit 2a64f0be84
3 changed files with 5 additions and 6 deletions

View File

@ -17,7 +17,7 @@ nodocs: htdocs/always.php built-locale
all: htdocs/always.php built-docs built-locale
built-docs: docs/phpdoc.ini htdocs/*.php inc/*.php docs/translation.rst
apigen generate --quiet --title=DAViCal --todo --tree --deprecated -s inc -s htdocs -d docs/api || phpdoc -c docs/phpdoc.ini || echo "NOTICE: Failed to build API docs"
apigen generate --quiet --title=DAViCal --todo --tree --deprecated -s inc -s htdocs --exclude caldav-client.php -d docs/api || phpdoc -c docs/phpdoc.ini || echo "NOTICE: Failed to build API docs"
rst2pdf docs/translation.rst || echo "NOTICE: Failed to build ReST docs"
touch $@

View File

@ -4,7 +4,7 @@
*
* @package awl
*
* @subpackage caldav
* @subpackage caldav-client-v2
* @author Andrew McMillan <andrew@mcmillan.net.nz>
* @copyright Andrew McMillan
* @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU LGPL version 3 or later

View File

@ -1,12 +1,13 @@
<?php
/**
* A Class for connecting to a caldav server
* A Class for connecting to a caldav server (older, standalone version)
* Use caldav-client-v2.php for a more powerful implementation.
*
* @package awl
* removed curl - now using fsockopen
* changed 2009 by Andres Obrero - Switzerland andres@obrero.ch
*
* @subpackage caldav
* @subpackage caldav-client
* @author Andrew McMillan <debian@mcmillan.net.nz>
* @copyright Andrew McMillan
* @license http://gnu.org/copyleft/gpl.html GNU GPL v2
@ -15,8 +16,6 @@
/**
* A class for accessing DAViCal via CalDAV, as a client
*
* @package awl
*/
class CalDAVClient {
/**