Author: ts Date: Fri Dec 21 10:39:55 2007 New Revision: 7034 Log: - Fixed doc and coding style violations found by phpUnderControl.
Modified: trunk/Webdav/src/backends/file.php trunk/Webdav/src/backends/memory.php trunk/Webdav/src/backends/simple.php trunk/Webdav/src/exceptions/broken_request_uri.php trunk/Webdav/src/exceptions/headers_not_validated.php trunk/Webdav/src/exceptions/invalid_header.php trunk/Webdav/src/exceptions/invalid_hook.php trunk/Webdav/src/exceptions/invalid_request_body.php trunk/Webdav/src/exceptions/invalid_request_method.php trunk/Webdav/src/exceptions/missing_header.php trunk/Webdav/src/exceptions/missing_transport_configuration.php trunk/Webdav/src/exceptions/misssing_server_variable.php trunk/Webdav/src/exceptions/no_transport_handler.php trunk/Webdav/src/exceptions/request_not_supported.php trunk/Webdav/src/exceptions/unknown_header.php trunk/Webdav/src/interfaces/property.php trunk/Webdav/src/interfaces/property_live.php trunk/Webdav/src/interfaces/request.php trunk/Webdav/src/interfaces/response.php trunk/Webdav/src/namespace_registry.php trunk/Webdav/src/options/backend_file_options.php trunk/Webdav/src/options/backend_memory_options.php trunk/Webdav/src/plugin_registry.php trunk/Webdav/src/plugins/lock/main.php trunk/Webdav/src/plugins/lock/property_handler.php trunk/Webdav/src/properties/creationdate.php trunk/Webdav/src/properties/dead.php trunk/Webdav/src/properties/displayname.php trunk/Webdav/src/properties/getcontentlanguage.php trunk/Webdav/src/properties/getcontentlength.php trunk/Webdav/src/properties/getetag.php trunk/Webdav/src/properties/getlastmodified.php trunk/Webdav/src/properties/lockdiscovery.php trunk/Webdav/src/properties/lockdiscovery_activelock.php trunk/Webdav/src/properties/resourcetype.php trunk/Webdav/src/properties/source.php trunk/Webdav/src/properties/source_link.php trunk/Webdav/src/properties/supportedlock.php trunk/Webdav/src/properties/supportedlock_lockentry.php trunk/Webdav/src/requests/content/lock_info.php trunk/Webdav/src/requests/content/property_behaviour.php trunk/Webdav/src/requests/copy.php trunk/Webdav/src/requests/lock.php trunk/Webdav/src/requests/mkcol.php trunk/Webdav/src/requests/move.php trunk/Webdav/src/requests/propfind.php trunk/Webdav/src/requests/proppatch.php trunk/Webdav/src/requests/put.php trunk/Webdav/src/requests/unlock.php trunk/Webdav/src/responses/copy.php trunk/Webdav/src/responses/error.php trunk/Webdav/src/responses/get_collection.php trunk/Webdav/src/responses/get_resource.php trunk/Webdav/src/responses/head.php trunk/Webdav/src/responses/multistatus.php trunk/Webdav/src/responses/propfind.php trunk/Webdav/src/responses/propstat.php trunk/Webdav/src/server.php trunk/Webdav/src/server_configuration.php trunk/Webdav/src/structs/output_result.php trunk/Webdav/src/tools/xml.php Modified: trunk/Webdav/src/backends/file.php ============================================================================== --- trunk/Webdav/src/backends/file.php [iso-8859-1] (original) +++ trunk/Webdav/src/backends/file.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -131,6 +131,7 @@ * * @param string $name The name of the property to set. * @param mixed $value The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/backends/memory.php ============================================================================== --- trunk/Webdav/src/backends/memory.php [iso-8859-1] (original) +++ trunk/Webdav/src/backends/memory.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -134,6 +134,7 @@ * if $value is not correct for the property $name * @param string $name * @param mixed $value + * @return void * @ignore */ public function __set( $name, $value ) @@ -155,7 +156,7 @@ } /** - * Return an initial set o fproperties for resources and collections. + * Return an initial set of properties for resources and collections. * * The second parameter indicates wheather the given resource is a * collection. The returned properties are used to initialize the property Modified: trunk/Webdav/src/backends/simple.php ============================================================================== --- trunk/Webdav/src/backends/simple.php [iso-8859-1] (original) +++ trunk/Webdav/src/backends/simple.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -340,7 +340,7 @@ $recurseCollections = array( $source ); // Collect children for all collections listed in $recurseCollections. - for ( $i = 0; $i < count( $recurseCollections); ++$i ) + for ( $i = 0; $i < count( $recurseCollections ); ++$i ) { $source = $recurseCollections[$i]; $childs = $this->getCollectionMembers( $source ); @@ -944,7 +944,7 @@ $this->nodeExists( $dest ) ) { $replaced = true; - if ( count ( $delteErrors = $this->performDelete( $dest ) ) > 0 ) + if ( count( $delteErrors = $this->performDelete( $dest ) ) > 0 ) { return new ezcWebdavMultistatusResponse( $delteErrors Modified: trunk/Webdav/src/exceptions/broken_request_uri.php ============================================================================== --- trunk/Webdav/src/exceptions/broken_request_uri.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/broken_request_uri.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -24,7 +24,8 @@ class ezcWebdavBrokenRequestUriException extends ezcWebdavException { /** - * Constructor + * Initializes the exception with the given $uri and sets the exception + * message from it. * * @param string $uri */ Modified: trunk/Webdav/src/exceptions/headers_not_validated.php ============================================================================== --- trunk/Webdav/src/exceptions/headers_not_validated.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/headers_not_validated.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -17,7 +17,8 @@ class ezcWebdavHeadersNotValidatedException extends ezcWebdavException { /** - * Constructor + * Initializes the exception with the given $header and sets the exception + * message from it. * * @param string $header */ Modified: trunk/Webdav/src/exceptions/invalid_header.php ============================================================================== --- trunk/Webdav/src/exceptions/invalid_header.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/invalid_header.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -9,6 +9,7 @@ */ /** * Exception thrown when a request/response object receives an invalid header value. + * * [EMAIL PROTECTED] ezcWebdavRequest::validateHeaders()} will throw this exception, if a * header, which is essential to the specific request, is not present. [EMAIL PROTECTED] * ezcWebdavTransport::sendResponse()} will throw this exception if a @@ -20,7 +21,9 @@ class ezcWebdavInvalidHeaderException extends ezcWebdavBadRequestException { /** - * Creates a new exception. + * Initializes the exception with the given $headerName, $value (the value + * of the named header) and $expectedValue and sets the exception message + * from it. * * @param string $headerName Name of the affected header. * @param string $value Contained value. Modified: trunk/Webdav/src/exceptions/invalid_hook.php ============================================================================== --- trunk/Webdav/src/exceptions/invalid_hook.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/invalid_hook.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -23,7 +23,8 @@ class ezcWebdavInvalidHookException extends ezcWebdavException { /** - * Creates a new exception. + * Initializes the exception with the given $class and $hook (the hook name + * that was requested) and sets the exception message from it. * * @param string $class * @param string $hook Modified: trunk/Webdav/src/exceptions/invalid_request_body.php ============================================================================== --- trunk/Webdav/src/exceptions/invalid_request_body.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/invalid_request_body.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -15,6 +15,14 @@ */ class ezcWebdavInvalidRequestBodyException extends ezcWebdavBadRequestException { + /** + * Initializes the exception with the given $method and $reason and sets + * the exception message from it. + * + * @param mixed $method + * @param mixed $reason + * @return void + */ public function __construct( $method, $reason = null ) { parent::__construct( Modified: trunk/Webdav/src/exceptions/invalid_request_method.php ============================================================================== --- trunk/Webdav/src/exceptions/invalid_request_method.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/invalid_request_method.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -15,6 +15,13 @@ */ class ezcWebdavInvalidRequestMethodException extends ezcWebdavException { + /** + * Initializes the exception with the given $method and sets the exception + * message from it. + * + * @param mixed $method + * @return void + */ public function __construct( $method ) { parent::__construct( "The HTTP request method '$method' was not understood." ); Modified: trunk/Webdav/src/exceptions/missing_header.php ============================================================================== --- trunk/Webdav/src/exceptions/missing_header.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/missing_header.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -22,7 +22,8 @@ class ezcWebdavMissingHeaderException extends ezcWebdavBadRequestException { /** - * Creates a new exception. + * Initializes the exception with the given $headerName and sets the exception + * message from it. * * @param string $headerName Name of the missing header. * @return void Modified: trunk/Webdav/src/exceptions/missing_transport_configuration.php ============================================================================== --- trunk/Webdav/src/exceptions/missing_transport_configuration.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/missing_transport_configuration.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -25,7 +25,8 @@ class ezcWebdavMissingTransportConfigurationException extends ezcWebdavException { /** - * Creates a new exception. + * Initializes the exception with the given $userAgent and sets the exception + * message from it. * * @param string $userAgent Name of the User-Agent header that lead to the exception. * @return void Modified: trunk/Webdav/src/exceptions/misssing_server_variable.php ============================================================================== --- trunk/Webdav/src/exceptions/misssing_server_variable.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/misssing_server_variable.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -17,7 +17,8 @@ class ezcWebdavMissingServerVariableException extends ezcWebdavException { /** - * Constructor + * Initializes the exception with the given $name (the key of the $_SERVER + * array) and sets the exception message from it. * * @param string $name */ Modified: trunk/Webdav/src/exceptions/no_transport_handler.php ============================================================================== --- trunk/Webdav/src/exceptions/no_transport_handler.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/no_transport_handler.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -17,7 +17,8 @@ class ezcWebdavNotTransportHandlerException extends ezcWebdavException { /** - * Constructor + * Initializes the exception with the given $client and sets the exception + * message from it. * * @param string $client */ Modified: trunk/Webdav/src/exceptions/request_not_supported.php ============================================================================== --- trunk/Webdav/src/exceptions/request_not_supported.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/request_not_supported.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -17,9 +17,11 @@ class ezcWebdavRequestNotSupportedException extends ezcWebdavException { /** - * Creates a new exception. + * Initializes the exception with the given $request and an optional reaon + * $message and sets the exception message from it. * - * @param string $headerName Name of the missing header. + * @param ezcWebdavRequest $request + * @param mixed $message * @return void */ public function __construct( ezcWebdavRequest $request, $message = null ) Modified: trunk/Webdav/src/exceptions/unknown_header.php ============================================================================== --- trunk/Webdav/src/exceptions/unknown_header.php [iso-8859-1] (original) +++ trunk/Webdav/src/exceptions/unknown_header.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -19,11 +19,10 @@ class ezcWebdavUnknownHeaderException extends ezcWebdavException { /** - * Creates a new exception. + * Initializes the exception with the given $header and sets the exception + * message from it. * * @param string $headerName Name of the affected header. - * @param string $value Contained value. - * @param string $expectedValue Expected values. * @return void */ public function __construct( $headerName ) Modified: trunk/Webdav/src/interfaces/property.php ============================================================================== --- trunk/Webdav/src/interfaces/property.php [iso-8859-1] (original) +++ trunk/Webdav/src/interfaces/property.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -99,6 +99,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/interfaces/property_live.php ============================================================================== --- trunk/Webdav/src/interfaces/property_live.php [iso-8859-1] (original) +++ trunk/Webdav/src/interfaces/property_live.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavLiveProperty class. * * @package Webdav - * @version //autogenetag// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -14,7 +14,7 @@ * properties must extend this common base class. Live properties reside in the * 'DAV:' namespace. * - * @version //autogenetag// + * @version //autogentag// * @package Webdav */ abstract class ezcWebdavLiveProperty extends ezcWebdavProperty Modified: trunk/Webdav/src/interfaces/request.php ============================================================================== --- trunk/Webdav/src/interfaces/request.php [iso-8859-1] (original) +++ trunk/Webdav/src/interfaces/request.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -149,6 +149,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/interfaces/response.php ============================================================================== --- trunk/Webdav/src/interfaces/response.php [iso-8859-1] (original) +++ trunk/Webdav/src/interfaces/response.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -12,7 +12,7 @@ * * This base class must be extended by all response representation classes. * - * @property int $status + * @property int $status * Response status code. * @property string $responseDescription * Optional user readable response description. @@ -227,6 +227,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/namespace_registry.php ============================================================================== --- trunk/Webdav/src/namespace_registry.php [iso-8859-1] (original) +++ trunk/Webdav/src/namespace_registry.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -163,7 +163,7 @@ { do { - $shortcut = sprintf( "%s%'05s" , $this->shortcutBase, $this->shortcutCounter++ ); + $shortcut = sprintf( "%s%'05s", $this->shortcutBase, $this->shortcutCounter++ ); } while ( isset( $this->usedShortcuts[$shortcut] ) === true ); return $shortcut; Modified: trunk/Webdav/src/options/backend_file_options.php ============================================================================== --- trunk/Webdav/src/options/backend_file_options.php [iso-8859-1] (original) +++ trunk/Webdav/src/options/backend_file_options.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -71,6 +71,7 @@ * if $value is not correct for the property $name * @param string $name * @param mixed $value + * @return void * @ignore */ public function __set( $name, $value ) Modified: trunk/Webdav/src/options/backend_memory_options.php ============================================================================== --- trunk/Webdav/src/options/backend_memory_options.php [iso-8859-1] (original) +++ trunk/Webdav/src/options/backend_memory_options.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -68,6 +68,7 @@ * if $value is not correct for the property $name * @param string $name * @param mixed $value + * @return void * @ignore */ public function __set( $name, $value ) Modified: trunk/Webdav/src/plugin_registry.php ============================================================================== --- trunk/Webdav/src/plugin_registry.php [iso-8859-1] (original) +++ trunk/Webdav/src/plugin_registry.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -159,6 +159,7 @@ * registrations of the same namespace will lead to an exception. * * @param ezcWebdavPluginConfiguration $config + * @return void * * @throws ezcWebdavPluginDoubleRegistrationException * if the namespace of a plugin is registered twice. @@ -217,6 +218,7 @@ * ignored. * * @param ezcWebdavPluginConfiguration $config + * @return void */ public final function unregisterPlugin( ezcWebdavPluginConfiguration $config ) { Modified: trunk/Webdav/src/plugins/lock/main.php ============================================================================== --- trunk/Webdav/src/plugins/lock/main.php [iso-8859-1] (original) +++ trunk/Webdav/src/plugins/lock/main.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -196,6 +196,12 @@ } } + /** + * Checks for active locks. + * + * @param ezcWebdavLockRequest $request + * @return null|ezcWebdavErrorResponse Null on success. + */ protected function checkLock( ezcWebdavLockRequest $request ) { $propFindRequest = new ezcWebdavPropFindRequest( $request->requestUri ); @@ -227,6 +233,13 @@ ); } + /** + * Checks a response for lock violations. + * + * @param ezcWebdavLockRequest $request + * @param ezcWebdavResponse $response + * @return null|ezcWebavErrorResponse Null on success. + */ protected function checkLockViolation( ezcWebdavLockRequest $request, ezcWebdavResponse $response ) { if ( $response instanceof ezcWebdavMultistatusResponse ) @@ -252,6 +265,12 @@ } } + /** + * Handle ezcWebdavUnlockRequest objects. + * + * @param ezcWebavUnlockRequest $request + * @return void + */ protected function handleUnlockRequest( ezcWebavUnlockRequest $request ) { @@ -277,6 +296,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/plugins/lock/property_handler.php ============================================================================== --- trunk/Webdav/src/plugins/lock/property_handler.php [iso-8859-1] (original) +++ trunk/Webdav/src/plugins/lock/property_handler.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -27,6 +27,7 @@ * the received property is not defined in RFC 2518, null is returned. * * @param DOMElement $domElement + * @param ezcWebdavXmlTool $xmlTool * @return ezcWebdavLiveProperty|null */ public function extractLiveProperty( DOMElement $domElement, ezcWebdavXmlTool $xmlTool ) @@ -168,6 +169,7 @@ * * @param ezcWebdavLiveProperty $property * @param DOMElement $parentElement + * @param ezcWebdavXmlTool $xmlTool * @return DOMElement */ public function serializeLiveProperty( ezcWebdavLiveProperty $property, DOMElement $parentElement, ezcWebdavXmlTool $xmlTool ) @@ -219,9 +221,16 @@ /** * Serializes an array of ezcWebdavLockDiscoveryPropertyActiveLock elements to XML. - * - * @param array(ezcWebdavLockDiscoveryPropertyActiveLock) $links - * @param DOMDocument $dom To create the returned DOMElements. + * + * Receives an array of [EMAIL PROTECTED] ezcWebdavLockDiscoveryPropertyActiveLock} + * objects in $activeLocks and serializes them to XML nodes in the received + * $dom DOMDocument, using the received [EMAIL PROTECTED] ezcWebdavXmlTool} $xmlTool. + * The created DOMElement objects are returned as an error for further + * processing. + * + * @param array(ezcWebdavLockDiscoveryPropertyActiveLock) $activeLocks + * @param DOMDocument $dom + * @param ezcWebdavXmlTool $xmlTool * @return array(DOMElement) */ protected function serializeActiveLockContent( array $activeLocks = null, DOMDocument $dom, ezcWebdavXmlTool $xmlTool ) @@ -295,6 +304,7 @@ * * @param array(ezcWebdavSupportedLockPropertyLockentry) $lockEntries * @param DOMDocument $dom To create the returned DOMElements. + * @param ezcWebdavXmlTool $xmlTool * @return array(DOMElement) */ protected function serializeLockEntryContent( array $lockEntries = null, DOMDocument $dom, ezcWebdavXmlTool $xmlTool ) Modified: trunk/Webdav/src/properties/creationdate.php ============================================================================== --- trunk/Webdav/src/properties/creationdate.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/creationdate.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -40,6 +40,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/dead.php ============================================================================== --- trunk/Webdav/src/properties/dead.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/dead.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavDeadProperty class. * * @package Webdav - * @version //autogenetag// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -18,7 +18,7 @@ * @property string $content * The content of a dead property. * - * @version //autogenetag// + * @version //autogentag// * @package Webdav */ class ezcWebdavDeadProperty extends ezcWebdavProperty @@ -47,6 +47,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/displayname.php ============================================================================== --- trunk/Webdav/src/properties/displayname.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/displayname.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -40,6 +40,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/getcontentlanguage.php ============================================================================== --- trunk/Webdav/src/properties/getcontentlanguage.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/getcontentlanguage.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -40,6 +40,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/getcontentlength.php ============================================================================== --- trunk/Webdav/src/properties/getcontentlength.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/getcontentlength.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -48,6 +48,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/getetag.php ============================================================================== --- trunk/Webdav/src/properties/getetag.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/getetag.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavGetEtagProperty class. * * @package Webdav - * @version //autogenetag// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * @property string $etag * The ETag. * - * @version //autogenetag// + * @version //autogentag// * @package Webdav */ class ezcWebdavGetEtagProperty extends ezcWebdavLiveProperty @@ -40,6 +40,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/getlastmodified.php ============================================================================== --- trunk/Webdav/src/properties/getlastmodified.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/getlastmodified.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavGetLastModifiedProperty class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * @property ezcWebdavDateTime $date * The last modification date. * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav */ class ezcWebdavGetLastModifiedProperty extends ezcWebdavLiveProperty @@ -40,6 +40,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/lockdiscovery.php ============================================================================== --- trunk/Webdav/src/properties/lockdiscovery.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/lockdiscovery.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavLockDiscoveryProperty class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @@ -15,7 +15,7 @@ * @property array(ezcWebdavLockDiscoveryPropertyActiveLock) $activeLock * Lock information according to <activelock> elements. * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav * * @access private @@ -45,6 +45,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/lockdiscovery_activelock.php ============================================================================== --- trunk/Webdav/src/properties/lockdiscovery_activelock.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/lockdiscovery_activelock.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavLockDiscoveryPropertyActiveLock class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @@ -23,7 +23,7 @@ * These are originally covered in additional <href> elements, which * is left out here. * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav * * @access private @@ -72,6 +72,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/resourcetype.php ============================================================================== --- trunk/Webdav/src/properties/resourcetype.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/resourcetype.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavResourceTypeProperty class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * @property string $type * The resource type (free form). * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav */ class ezcWebdavResourceTypeProperty extends ezcWebdavLiveProperty @@ -47,6 +47,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/source.php ============================================================================== --- trunk/Webdav/src/properties/source.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/source.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavSourceProperty class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * @property array(ezcWebdavSourcePropertyLink) $links * Lock information according to <link> elements. * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav */ class ezcWebdavSourceProperty extends ezcWebdavLiveProperty @@ -41,6 +41,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/source_link.php ============================================================================== --- trunk/Webdav/src/properties/source_link.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/source_link.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavSourceProperty class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -15,7 +15,7 @@ * @property string $dst * Destination of the link (URI). * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav */ class ezcWebdavSourcePropertyLink extends ezcWebdavLiveProperty @@ -45,6 +45,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/supportedlock.php ============================================================================== --- trunk/Webdav/src/properties/supportedlock.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/supportedlock.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavSupportedLockProperty class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @@ -15,7 +15,7 @@ * @property array(ezcWebdavSupportedLockPropertyLockentry) $lockEntry * Lock information according to <lockentry> elements. * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav * * @access private @@ -45,6 +45,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/properties/supportedlock_lockentry.php ============================================================================== --- trunk/Webdav/src/properties/supportedlock_lockentry.php [iso-8859-1] (original) +++ trunk/Webdav/src/properties/supportedlock_lockentry.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -3,7 +3,7 @@ * File containing the ezcWebdavSupportedLockPropertyLockentry class. * * @package Webdav - * @version //autogenlastmodified// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @@ -17,7 +17,7 @@ * @property int $lockScope * Constant indicating exclusive or shared lock. * - * @version //autogenlastmodified// + * @version //autogentag// * @package Webdav * * @access private @@ -49,6 +49,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/content/lock_info.php ============================================================================== --- trunk/Webdav/src/requests/content/lock_info.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/content/lock_info.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -58,6 +58,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/content/property_behaviour.php ============================================================================== --- trunk/Webdav/src/requests/content/property_behaviour.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/content/property_behaviour.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -65,6 +65,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/copy.php ============================================================================== --- trunk/Webdav/src/requests/copy.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/copy.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -65,6 +65,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/lock.php ============================================================================== --- trunk/Webdav/src/requests/lock.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/lock.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -4,7 +4,7 @@ * * @package Webdav * @version //autogentag// - * @copyright Lockright (C) 2005-2007 eZ systems as. All rights reserved. + * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @access private */ @@ -86,6 +86,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/mkcol.php ============================================================================== --- trunk/Webdav/src/requests/mkcol.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/mkcol.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -46,6 +46,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/move.php ============================================================================== --- trunk/Webdav/src/requests/move.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/move.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -4,7 +4,7 @@ * * @package Webdav * @version //autogentag// - * @copyright Moveright (C) 2005-2007 eZ systems as. All rights reserved. + * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** @@ -62,6 +62,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/propfind.php ============================================================================== --- trunk/Webdav/src/requests/propfind.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/propfind.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -4,7 +4,7 @@ * * @package Webdav * @version //autogentag// - * @copyright PropFindright (C) 2005-2007 eZ systems as. All rights reserved. + * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** @@ -70,6 +70,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/proppatch.php ============================================================================== --- trunk/Webdav/src/requests/proppatch.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/proppatch.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -4,7 +4,7 @@ * * @package Webdav * @version //autogentag// - * @copyright PropPatchright (C) 2005-2007 eZ systems as. All rights reserved. + * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** @@ -64,6 +64,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/put.php ============================================================================== --- trunk/Webdav/src/requests/put.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/put.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -74,6 +74,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/requests/unlock.php ============================================================================== --- trunk/Webdav/src/requests/unlock.php [iso-8859-1] (original) +++ trunk/Webdav/src/requests/unlock.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -4,7 +4,7 @@ * * @package Webdav * @version //autogentag// - * @copyright Unlockright (C) 2005-2007 eZ systems as. All rights reserved. + * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @access private */ Modified: trunk/Webdav/src/responses/copy.php ============================================================================== --- trunk/Webdav/src/responses/copy.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/copy.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -49,6 +49,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/error.php ============================================================================== --- trunk/Webdav/src/responses/error.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/error.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -57,6 +57,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/get_collection.php ============================================================================== --- trunk/Webdav/src/responses/get_collection.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/get_collection.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -44,6 +44,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/get_resource.php ============================================================================== --- trunk/Webdav/src/responses/get_resource.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/get_resource.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -46,6 +46,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/head.php ============================================================================== --- trunk/Webdav/src/responses/head.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/head.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -42,6 +42,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/multistatus.php ============================================================================== --- trunk/Webdav/src/responses/multistatus.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/multistatus.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -25,9 +25,6 @@ * Any number of [EMAIL PROTECTED] ezcWebdavResponse} objects may be passed as * parameters to the constructer. * - * @param ezcWebdavResponse $response1 - * @param ezcWebdavResponse $response2 - * @param ezcWebdavResponse $response... * @return void */ public function __construct() @@ -89,6 +86,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/propfind.php ============================================================================== --- trunk/Webdav/src/responses/propfind.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/propfind.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -16,7 +16,7 @@ * * @property ezcWebdavResource|ezcWebdavCollection $node * Contains the resource affected by the response. - * @property array(ezcWebdavPropStatResponse) $responses + * @property array(ezcWebdavPropStatResponse) $responses * Contains a list of propstat responses for the node. * * @version //autogentag// @@ -82,6 +82,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/responses/propstat.php ============================================================================== --- trunk/Webdav/src/responses/propstat.php [iso-8859-1] (original) +++ trunk/Webdav/src/responses/propstat.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -44,6 +44,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/server.php ============================================================================== --- trunk/Webdav/src/server.php [iso-8859-1] (original) +++ trunk/Webdav/src/server.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -243,6 +243,7 @@ * * @param string $propertyName The name of the property to set. * @param mixed $propertyValue The property value. + * @return void * @ignore * * @throws ezcBasePropertyNotFoundException Modified: trunk/Webdav/src/server_configuration.php ============================================================================== --- trunk/Webdav/src/server_configuration.php [iso-8859-1] (original) +++ trunk/Webdav/src/server_configuration.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -205,6 +205,7 @@ * if $value is not correct for the property $name * @param string $propertyName * @param mixed $propertyValue + * @return void * @ignore */ public function __set( $propertyName, $propertyValue ) Modified: trunk/Webdav/src/structs/output_result.php ============================================================================== --- trunk/Webdav/src/structs/output_result.php [iso-8859-1] (original) +++ trunk/Webdav/src/structs/output_result.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -9,7 +9,6 @@ */ /** * Struct representing a result to display. - * * * @version //autogentag// * @package Webdav Modified: trunk/Webdav/src/tools/xml.php ============================================================================== --- trunk/Webdav/src/tools/xml.php [iso-8859-1] (original) +++ trunk/Webdav/src/tools/xml.php [iso-8859-1] Fri Dec 21 10:39:55 2007 @@ -121,6 +121,7 @@ * * @param string $propertyName Name of the property. * @param mixed $propertyValue The value for the property. + * @return void * * @throws ezcBasePropertyNotFoundException * If a the value for the property options is not an instance of -- svn-components mailing list svn-components@lists.ez.no http://lists.ez.no/mailman/listinfo/svn-components