From 8dbe6f24dbdaff1af3fc1d202f580416c5889b09 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Thu, 3 Apr 2014 20:37:22 -0400 Subject: [PATCH] Fix some phpdoc. --- framework/ActiveSync/lib/Horde/ActiveSync.php | 22 +-- .../lib/Horde/ActiveSync/Collections.php | 1 + .../lib/Horde/ActiveSync/Device.php | 24 ++-- .../Message/AirSyncBaseAttachment.php | 18 ++- .../ActiveSync/Message/AirSyncBaseBody.php | 10 +- .../Message/AirSyncBaseFileAttachment.php | 8 +- .../Horde/ActiveSync/Message/Attachment.php | 12 +- .../lib/Horde/ActiveSync/Message/Attendee.php | 8 +- .../lib/Horde/ActiveSync/Message/Contact.php | 134 +++++++++--------- .../Horde/ActiveSync/Message/Exception.php | 34 ++--- .../lib/Horde/ActiveSync/Message/Flag.php | 26 ++-- .../lib/Horde/ActiveSync/Message/Folder.php | 10 +- .../lib/Horde/ActiveSync/Message/Mail.php | 56 ++++---- .../ActiveSync/Message/MeetingRequest.php | 26 ++-- .../lib/Horde/ActiveSync/Message/Note.php | 10 +- .../Message/RecipientInformation.php | 8 +- .../Horde/ActiveSync/Message/Recurrence.php | 16 +-- .../Message/ResolveRecipientsPicture.php | 2 +- .../lib/Horde/ActiveSync/Message/SendMail.php | 12 +- .../ActiveSync/Message/SendMailSource.php | 8 +- .../lib/Horde/ActiveSync/Message/Task.php | 24 ++-- .../ActiveSync/Message/TaskRecurrence.php | 18 +-- .../Horde/ActiveSync/Request/Autodiscover.php | 1 + .../lib/Horde/ActiveSync/Request/Base.php | 1 + .../Horde/ActiveSync/Request/FolderCreate.php | 1 + .../Horde/ActiveSync/Request/FolderSync.php | 1 + .../ActiveSync/Request/GetAttachment.php | 1 + .../Horde/ActiveSync/Request/GetHierarchy.php | 1 + .../ActiveSync/Request/GetItemEstimate.php | 1 + .../ActiveSync/Request/ItemOperations.php | 1 + .../ActiveSync/Request/MeetingResponse.php | 1 + .../Horde/ActiveSync/Request/MoveItems.php | 1 + .../lib/Horde/ActiveSync/Request/Ping.php | 1 + .../Horde/ActiveSync/Request/Provision.php | 1 + .../ActiveSync/Request/ResolveRecipients.php | 1 + .../lib/Horde/ActiveSync/Request/Search.php | 1 + .../lib/Horde/ActiveSync/Request/SendMail.php | 1 + .../lib/Horde/ActiveSync/Request/Settings.php | 1 + .../Horde/ActiveSync/Request/SmartForward.php | 1 + .../Horde/ActiveSync/Request/SmartReply.php | 1 + .../lib/Horde/ActiveSync/Request/Sync.php | 1 + .../lib/Horde/ActiveSync/Request/SyncBase.php | 1 + .../Horde/ActiveSync/Request/ValidateCert.php | 1 + .../lib/Horde/ActiveSync/State/Mongo.php | 2 +- .../lib/Horde/ActiveSync/SyncCache.php | 27 ++-- 45 files changed, 279 insertions(+), 258 deletions(-) diff --git a/framework/ActiveSync/lib/Horde/ActiveSync.php b/framework/ActiveSync/lib/Horde/ActiveSync.php index 9d72c0a19ab..bfc38ea14b4 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync.php @@ -24,16 +24,16 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property Horde_ActiveSync_Wbxml_Encoder encoder The Wbxml encoder. - * @property Horde_ActiveSync_Wbxml_Decoder decoder The Wbxml decoder. - * @property Horde_ActiveSync_State_Base state The state object. - * @property Horde_Controller_Reqeust_Http request The HTTP request object. - * @property Horde_ActiveSync_Driver_Base driver - * @property boolean provisioning - * @property boolean multipart - * @property string certPath - * @property Horde_ActiveSync_Device device - * @property Horde_Log_Logger logger + * @property-read Horde_ActiveSync_Wbxml_Encoder $encoder The Wbxml encoder. + * @property-read Horde_ActiveSync_Wbxml_Decoder $decoder The Wbxml decoder. + * @property-read Horde_ActiveSync_State_Base $state The state object. + * @property-read Horde_Controller_Reqeust_Http $request The HTTP request object. + * @property-read Horde_ActiveSync_Driver_Base $driver The backend driver object. + * @property-read boolean|string $provisioning Provisioning support: True, False, or 'loose' + * @property-read boolean $multipart Indicate this is a multipart request. + * @property-read string $certPath Local path to the certificate bundle. + * @property-read Horde_ActiveSync_Device $device The current device object. + * @property-read Horde_Log_Logger $logger The logger object. */ class Horde_ActiveSync { @@ -308,7 +308,7 @@ class Horde_ActiveSync /** * Provisioning support * - * @var string (TODO _constant this) + * @var string */ protected $_provisioning; diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Collections.php b/framework/ActiveSync/lib/Horde/ActiveSync/Collections.php index 08f50ca11b5..4d09cc77afe 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Collections.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Collections.php @@ -23,6 +23,7 @@ * @copyright 2010-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal Not intended for use outside of the ActiveSync library. */ class Horde_ActiveSync_Collections implements IteratorAggregate { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Device.php b/framework/ActiveSync/lib/Horde/ActiveSync/Device.php index 27d99d1c13b..53edd1d80d5 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Device.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Device.php @@ -23,25 +23,25 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string id The device id. - * @property string deviceType The device type string. - * @property string clientType The client name, if available. - * @property integer rwstatus The RemoteWipe status - a + * @property string $id The device id. + * @property string $deviceType The device type string. + * @property string $clientType The client name, if available. + * @property integer $rwstatus The RemoteWipe status - a * Horde_ActiveSync::RWSTATUS_* constant. - * @property string userAgent The device's user agent string. - * @property string user The userid for the current device account. - * @property array supported The SUPPORTED data sent from this device. - * @property string policykey The current policykey, if provisioned. - * @property array properties The device properties, sent in DEVICEINFO, + * @property string $userAgent The device's user agent string. + * @property string $user The userid for the current device account. + * @property array $supported The SUPPORTED data sent from this device. + * @property string $policykey The current policykey, if provisioned. + * @property array $properties The device properties, sent in DEVICEINFO, * along with any custom properties set. - * @property string announcedVersion The most last EAS supported versions + * @property string $announcedVersion The most last EAS supported versions * announced to the device. - * @property integer multiplex Bitmask describing collections that this + * @property integer $multiplex Bitmask describing collections that this * device does not support user created * folders for, therefore all sources must * be multiplexed together. Masks are * the MULTIPLEX_* constants. - * @property boolean blocked True if device has been marked as blocked. + * @property boolean $blocked True if device has been marked as blocked. * */ class Horde_ActiveSync_Device diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseAttachment.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseAttachment.php index 1ed5647d1e5..5b7166a484f 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseAttachment.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseAttachment.php @@ -34,19 +34,17 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string attmethod The attachment method. - * @property integer attsize The attachment size. - * @property string displayname The attachment's display name. - * @property string attname The attachment's name. - * @property boolean attremoved @todo - * @property contentid The Content-Id of the mime part. - * @property contentlocation @todo - * @property isinline Indicates that this part is to be displayed - * inline. + * @property string $attmethod The attachment method. + * @property integer $attsize The attachment size. + * @property string $displayname The attachment's display name. + * @property string $attname The attachment's name. + * @property boolean $attremoved @todo + * @property string $contentid The Content-Id of the mime part. + * @property string $contentlocation @todo + * @property boolean $isinline Indicates that this part is to be displayed inline. */ class Horde_ActiveSync_Message_AirSyncBaseAttachment extends Horde_ActiveSync_Message_Base { - /* Attachement types */ const ATT_TYPE_NORMAL = 1; const ATT_TYPE_EMBEDDED = 5; diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseBody.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseBody.php index 061568f1ef3..d21ec9bf906 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseBody.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseBody.php @@ -34,11 +34,11 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property integer type The content type of the body. - * A Horde_ActiveSync::BODYPREF_TYPE_* constant. - * @property integer estimateddatasize The estimated size of the untruncated body. - * @property integer truncated The truncated flag. 0 == not truncated, 1 == truncated - * @property mixed string|stream The body data. + * @property integer $type The content type of the body. + * A Horde_ActiveSync::BODYPREF_TYPE_* constant. + * @property integer $estimateddatasize The estimated size of the untruncated body. + * @property integer $truncated The truncated flag. 0 == not truncated, 1 == truncated + * @property mixed $string|stream $data The body data. */ class Horde_ActiveSync_Message_AirSyncBaseBody extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseFileAttachment.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseFileAttachment.php index 6891b8ea9c8..c474b83400d 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseFileAttachment.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseFileAttachment.php @@ -34,10 +34,10 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string contenttype The content type of the attachment. - * @property mixed string|stream The attachment data. - * @property integer total The total size of the attachment. - * @property integer range @todo + * @property string $contenttype The content type of the attachment. + * @property mixed $string|stream $data The attachment data. + * @property integer $total The total size of the attachment. + * @property string $range The range string being returned. */ class Horde_ActiveSync_Message_AirSyncBaseFileAttachment extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attachment.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attachment.php index 5a2c2045247..9ca27f3fa4e 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attachment.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attachment.php @@ -34,12 +34,12 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string attmethod The attachment method. - * @property integer attsize The attachment size. - * @property string displayname The attachment's display name. - * @property string attname The attachment's name. - * @property string attoid The ObjectID of the attachment. - * @property integer attremoved @todo + * @property string $attmethod The attachment method. + * @property integer $attsize The attachment size. + * @property string $displayname The attachment's display name. + * @property string $attname The attachment's name. + * @property string $attoid The ObjectID of the attachment. + * @property integer $attremoved @todo */ class Horde_ActiveSync_Message_Attachment extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attendee.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attendee.php index 02d9ee26ed3..16cfde1e0a7 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attendee.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Attendee.php @@ -34,10 +34,10 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string email The attendee's email address. - * @property string name The attendee's name. - * @property integer status The attendee's status (a STATUS_* constant). - * @property integer type The attendee type (a TYPE_* constant) + * @property string $email The attendee's email address. + * @property string $name The attendee's name. + * @property integer $status The attendee's status (a STATUS_* constant). + * @property integer $type The attendee type (a TYPE_* constant) */ class Horde_ActiveSync_Message_Attendee extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Contact.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Contact.php index de1d1a97ae5..7e344ddc515 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Contact.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Contact.php @@ -34,73 +34,73 @@ * @author Michael J Rubinsky * @package ActiveSync * - * anniversary - * @property string assistantname - * @property string assistnamephonenumber - * @property Horde_Date birthday - * @property string business2phonenumber - * @property string businesscity - * @property string businesscountry - * @property string businesspostalcode - * @property string businessstate - * @property string businessstreet - * @property string businessfaxnumber - * @property string businessphonenumber - * @property string carphonenumber - * @property array categories - * @property array children - * @property string companyname - * @property string department - * @property string email1address - * @property string email2address - * @property string email3address - * @property string fileas - * @property string firstname - * @property string home2phonenumber - * @property string homecity - * @property string homecountry - * @property string homepostalcode - * @property string homestate - * @property string homestreet - * @property string homefaxnumber - * @property string homephonenumber - * @property string jobtitle - * @property string lastname - * @property string middlename - * @property string mobilephonenumber - * @property string officelocation - * @property string othercity - * @property string othercountry - * @property string otherpostalcode - * @property string otherstate - * @property string otherstreet - * @property string pagernumber - * @property string radiophonenumber - * @property string spouse - * @property string suffix - * @property string title - * @property string webpage - * @property string yomicompanyname - * @property string yomifirstname - * @property string yomilastname - * @property string picture - * @property string customerid - * @property string governmentid - * @property string imaddress - * @property string imaddress2 - * @property string imaddress3 - * @property string managername - * @property string companymainphone - * @property string accountname - * @property string nickname - * @property string mms - * @property string alias (EAS >= 14.0 only) - * @property string weightedrank (EAS >= 14.0 only) - * @property string body (EAS 2.5 only) - * @property integer bodysize (EAS 2.5 only) - * @property integer bodytruncated (EAS 2.5 only) - * @property integer rtf (EAS 2.5 only) - * @property Horde_ActiveSync_Message_AirSyncBaseBody airsyncbasebody (EAS >= 12.0 only) + * @property Horde_Date $anniversary + * @property string $assistantname + * @property string $assistnamephonenumber + * @property Horde_Date $birthday + * @property string $business2phonenumber + * @property string $businesscity + * @property string $businesscountry + * @property string $businesspostalcode + * @property string $businessstate + * @property string $businessstreet + * @property string $businessfaxnumber + * @property string $businessphonenumber + * @property string $carphonenumber + * @property array $categories + * @property array $children + * @property string $companyname + * @property string $department + * @property string $email1address + * @property string $email2address + * @property string $email3address + * @property string $fileas + * @property string $firstname + * @property string $home2phonenumber + * @property string $homecity + * @property string $homecountry + * @property string $homepostalcode + * @property string $homestate + * @property string $homestreet + * @property string $homefaxnumber + * @property string $homephonenumber + * @property string $jobtitle + * @property string $lastname + * @property string $middlename + * @property string $mobilephonenumber + * @property string $officelocation + * @property string $othercity + * @property string $othercountry + * @property string $otherpostalcode + * @property string $otherstate + * @property string $otherstreet + * @property string $pagernumber + * @property string $radiophonenumber + * @property string $spouse + * @property string $suffix + * @property string $title + * @property string $webpage + * @property string $yomicompanyname + * @property string $yomifirstname + * @property string $yomilastname + * @property string $picture + * @property string $customerid + * @property string $governmentid + * @property string $imaddress + * @property string $imaddress2 + * @property string $imaddress3 + * @property string $managername + * @property string $companymainphone + * @property string $accountname + * @property string $nickname + * @property string $mms + * @property string $alias (EAS >= 14.0 only) + * @property string $weightedrank (EAS >= 14.0 only) + * @property string $body (EAS 2.5 only) + * @property integer $bodysize (EAS 2.5 only) + * @property integer $bodytruncated (EAS 2.5 only) + * @property integer $rtf (EAS 2.5 only) + * @property Horde_ActiveSync_Message_AirSyncBaseBody $airsyncbasebody (EAS >= 12.0 only) */ class Horde_ActiveSync_Message_Contact extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Exception.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Exception.php index 5a6ff24eb3a..94b218425dc 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Exception.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Exception.php @@ -34,23 +34,23 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property mixed string|Horde_Date timezone - * @property Horde_Date dtstamp - * @property Horde_Date starttime - * @property string subject - * @property string organizername - * @property string organizeremail - * @property string location - * @property Horde_Date endtime - * @property integer sensitivity - * @property integer busystatus - * @property integer alldayevent - * @property integer reminder - * @property integer meetingstatus - * @property Horde_Date exceptionstarttime - * @property integer deleted - * @property array attendees - * @property array categories + * @property mixed $string|Horde_Date timezone + * @property Horde_Date $dtstamp + * @property Horde_Date $starttime + * @property string $subject + * @property string $organizername + * @property string $organizeremail + * @property string $location + * @property Horde_Date $endtime + * @property integer $sensitivity + * @property integer $busystatus + * @property integer $alldayevent + * @property integer $reminder + * @property integer $meetingstatus + * @property Horde_Date $exceptionstarttime + * @property integer $deleted + * @property array $attendees + * @property array $categories */ class Horde_ActiveSync_Message_Exception extends Horde_ActiveSync_Message_Appointment { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Flag.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Flag.php index ad41acbdfa3..d04e0dcba06 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Flag.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Flag.php @@ -45,19 +45,19 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property integer flagstatus - * @property integer flagtype - * @property Horde_Date startdate - * @property Horde_Date utcstartdate - * @property Horde_Date duedate - * @property Horde_Date utcduedate - * @property Horde_Date datecompleted - * @property integer reminderset - * @property integer remindertime - * @property string subject - * @property Horde_Date ordinaldate - * @property Horde_Date subordinaldate - * @property integer completetime + * @property integer $flagstatus + * @property integer $flagtype + * @property Horde_Date $startdate + * @property Horde_Date $utcstartdate + * @property Horde_Date $duedate + * @property Horde_Date $utcduedate + * @property Horde_Date $datecompleted + * @property integer $reminderset + * @property integer $remindertime + * @property string $subject + * @property Horde_Date $ordinaldate + * @property Horde_Date $subordinaldate + * @property integer $completetime */ class Horde_ActiveSync_Message_Flag extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Folder.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Folder.php index 1691d83e730..bc0eb198455 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Folder.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Folder.php @@ -34,11 +34,11 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string parentid Identifier of parent folder, if applicable. - * @property string _serverid The private backend server id. - * @property string serverid Identifier of folder on the backend. - * @property string displayname Display name for folder. - * @property integer type Foldertype (Horde_Activesync:: constant). + * @property string $parentid Identifier of parent folder, if applicable. + * @property string $_serverid The private backend server id. + * @property string $serverid Identifier of folder on the backend. + * @property string $displayname Display name for folder. + * @property integer $type Foldertype (Horde_Activesync:: constant). */ class Horde_ActiveSync_Message_Folder extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Mail.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Mail.php index 49ee9d4b7d2..9497e86b9ea 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Mail.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Mail.php @@ -34,36 +34,36 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string to - * @property string cc - * @property string from - * @property string subject - * @property string threadtopic - * @property Horde_Date datereceived - * @property string displayto - * @property integer importance - * @property integer mimetruncated - * @property string mimedata - * @property integer mimesize - * @property integer messageclass - * @property Horde_ActiveSync_Message_MeetingRequest meetingrequest - * @property string reply_to - * @property integer read - * @property cpid integer The codepage id. - * @property Horde_ActiveSync_Message_Attachments attachments (EAS 2.5 only). - * @property integer bodytruncated (EAS 2.5 only) - * @property integer bodysize (EAS 2.5 only) - * @property mixed stream|string body (EAS 2.5 only) - * @property integer airsyncbasenativebodytype (EAS > 2.5 only). - * @property Horde_ActiveSync_Message_AirSyncBaseBody airsyncbasebody (EAS > 2.5 only). - * @property Horde_ActiveSync_Message_AirSyncBaseAttachments airsyncbaseattachments (EAS > 2.5 only). - * @property integer contentclass (EAS > 2.5 only). - * @property Horde_ActiveSync_Message_Flag flag (EAS > 2.5 only). + * @property string $to + * @property string $cc + * @property string $from + * @property string $subject + * @property string $threadtopic + * @property Horde_Date $datereceived + * @property string $displayto + * @property integer $importance + * @property integer $mimetruncated + * @property string $mimedata + * @property integer $mimesize + * @property integer $messageclass + * @property Horde_ActiveSync_Message_MeetingRequest $meetingrequest + * @property string $reply_to + * @property integer $read + * @property cpid $integer The codepage id. + * @property Horde_ActiveSync_Message_Attachments $attachments (EAS 2.5 only). + * @property integer $bodytruncated (EAS 2.5 only) + * @property integer $bodysize (EAS 2.5 only) + * @property mixed $stream|string body (EAS 2.5 only) + * @property integer $airsyncbasenativebodytype (EAS > 2.5 only). + * @property Horde_ActiveSync_Message_AirSyncBaseBody $airsyncbasebody (EAS > 2.5 only). + * @property Horde_ActiveSync_Message_AirSyncBaseAttachments $airsyncbaseattachments (EAS > 2.5 only). + * @property integer $contentclass (EAS > 2.5 only). + * @property Horde_ActiveSync_Message_Flag $flag (EAS > 2.5 only). * * // Internal properties. Not streamed to device. - * @property string messageid @since 2.4.0 - * @property boolean answered @since 2.4.0 - * @property boolean forwarded @since 2.4.0 + * @property string $messageid @since 2.4.0 + * @property boolean $answered @since 2.4.0 + * @property boolean $forwarded @since 2.4.0 */ class Horde_ActiveSync_Message_Mail extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/MeetingRequest.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/MeetingRequest.php index a2a9edaff31..921fe3d9428 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/MeetingRequest.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/MeetingRequest.php @@ -33,19 +33,19 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property integer alldayevent - * @property Horde_Date starttime - * @property Horde_Date dtstamp - * @property Horde_Date endtime - * @property integer instancetype - * @property string location - * @property string organizer - * @property string recurrenceid - * @property integer reminder - * @property integer responserequested - * @property Horde_ActiveSync_Message_Recurrence recurrences (Not currently supported). - * @property integer sensitivity - * @property integer busystatus + * @property integer $alldayevent + * @property Horde_Date $starttime + * @property Horde_Date $dtstamp + * @property Horde_Date $endtime + * @property integer $instancetype + * @property string $location + * @property string $organizer + * @property string $recurrenceid + * @property integer $reminder + * @property integer $responserequested + * @property Horde_ActiveSync_Message_Recurrence $recurrences (Not currently supported). + * @property integer $sensitivity + * @property integer $busystatus * @property string|Horde_Date timezone * @proprety string globalobjid */ diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Note.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Note.php index 910009b9899..0cc235150e3 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Note.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Note.php @@ -23,11 +23,11 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string subject The note's subject. - * @property Horde_ActiveSync_Message_AirSyncBaseBody body The note's body. - * @property string messageclass The note's message class. - * @property array categories The note's categories. - * @property Horde_Date lastmodified The note's last modification date. + * @property string $subject The note's subject. + * @property Horde_ActiveSync_Message_AirSyncBaseBody $body The note's body. + * @property string $messageclass The note's message class. + * @property array $categories The note's categories. + * @property Horde_Date $lastmodified The note's last modification date. */ class Horde_ActiveSync_Message_Note extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/RecipientInformation.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/RecipientInformation.php index 8baeafa6524..11cd44154ce 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/RecipientInformation.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/RecipientInformation.php @@ -23,10 +23,10 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string email1address - * @property string fileas - * @property string alias (EAS >= 14.0 only) - * @property string weightedrank (EAS >= 14.0 only) + * @property string $email1address + * @property string $fileas + * @property string $alias (EAS >= 14.0 only) + * @property string $weightedrank (EAS >= 14.0 only) */ class Horde_ActiveSync_Message_RecipientInformation extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Recurrence.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Recurrence.php index 0acdff21156..f759d7beed6 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Recurrence.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Recurrence.php @@ -34,14 +34,14 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property integer type - * @property Horde_Date until - * @property string occurrences - * @property integer interval - * @property integer dayofweek - * @property integer dayofmonth - * @property integer weekofmonth - * @property integer monthofyear + * @property integer $type + * @property Horde_Date $until + * @property string $occurrences + * @property integer $interval + * @property integer $dayofweek + * @property integer $dayofmonth + * @property integer $weekofmonth + * @property integer $monthofyear */ class Horde_ActiveSync_Message_Recurrence extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/ResolveRecipientsPicture.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/ResolveRecipientsPicture.php index bb3386bcf78..52a8c388280 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/ResolveRecipientsPicture.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/ResolveRecipientsPicture.php @@ -24,7 +24,7 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property integer status The status of the recipient's picture. + * @property integer $status The status of the recipient's picture. * @property string|stream data The picture data. * */ diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMail.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMail.php index dc78636978d..58c65443e23 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMail.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMail.php @@ -39,15 +39,15 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string clientid The client's temporary clientid for this item. - * @property boolean saveinsent Flag to indicate whether to save in sent mail. - * @property boolean replacemime Flag to indicate we are replacing the full + * @property string $clientid The client's temporary clientid for this item. + * @property boolean $saveinsent Flag to indicate whether to save in sent mail. + * @property boolean $replacemime Flag to indicate we are replacing the full * MIME data (i.e., not a SMART item). - * @property string accountid The accountid. - * @property Horde_ActiveSync_Message_SendMailSource source + * @property string $accountid The accountid. + * @property Horde_ActiveSync_Message_SendMailSource $source * The email source. * @property string|stream mime The MIME contents of the message. - * @property string templateid The templateid. + * @property string $templateid The templateid. */ class Horde_ActiveSync_Message_SendMail extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMailSource.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMailSource.php index 6b16631b5a6..96876d3ee4e 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMailSource.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/SendMailSource.php @@ -39,10 +39,10 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property string folderid The item's folderid. - * @property string itemid The item's itemid. - * @property string longid The item's longid. - * @property string instanceid The item's instanceid. + * @property string $folderid The item's folderid. + * @property string $itemid The item's itemid. + * @property string $longid The item's longid. + * @property string $instanceid The item's instanceid. */ class Horde_ActiveSync_Message_SendMailSource extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Task.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Task.php index c9a99cba25c..5fa7428bf79 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/Task.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/Task.php @@ -34,19 +34,19 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property boolean complete Completion flag - * @property Horde_Date datecompleted The date the task was completed, in UTC. - * @property Horde_Date utcduedate The date this task is due, in UTC. - * @property integer importance The importance flag. - * @property Horde_ActiveSync_Message_TaskRecurrence recurrence + * @property boolean $complete Completion flag + * @property Horde_Date $datecompleted The date the task was completed, in UTC. + * @property Horde_Date $utcduedate The date this task is due, in UTC. + * @property integer $importance The importance flag. + * @property Horde_ActiveSync_Message_TaskRecurrence $recurrence * The recurrence object. - * @property integer sensitivity The sensitivity flag. - * @property Horde_Date utcstartdate The date this task starts, in UTC. - * @property string subject The task subject. - * @property array categories An array of categories. - * @property string body The task body (EAS Version < 12.0) - * @property boolean bodytruncated Truncation flag (EAS Version < 12.0) - * @property Horde_ActiveSync_Message_AirSyncBaseBody airsyncbasebody + * @property integer $sensitivity The sensitivity flag. + * @property Horde_Date $utcstartdate The date this task starts, in UTC. + * @property string $subject The task subject. + * @property array $categories An array of categories. + * @property string $body The task body (EAS Version < 12.0) + * @property boolean $bodytruncated Truncation flag (EAS Version < 12.0) + * @property Horde_ActiveSync_Message_AirSyncBaseBody $airsyncbasebody * The task body (EAS Version >= 12.0) */ class Horde_ActiveSync_Message_Task extends Horde_ActiveSync_Message_Base diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Message/TaskRecurrence.php b/framework/ActiveSync/lib/Horde/ActiveSync/Message/TaskRecurrence.php index 75beac2f0d3..df73c37f38c 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Message/TaskRecurrence.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Message/TaskRecurrence.php @@ -45,15 +45,15 @@ * @author Michael J Rubinsky * @package ActiveSync * - * @property integer type - * @property Horde_Date start - * @property Horde_Date until - * @property string occurrences - * @property integer interval - * @property integer dayofweek - * @property integer dayofmonth - * @property integer weekofmonth - * @property integer monthofyear + * @property integer $type + * @property Horde_Date $start + * @property Horde_Date $until + * @property string $occurrences + * @property integer $interval + * @property integer $dayofweek + * @property integer $dayofmonth + * @property integer $weekofmonth + * @property integer $monthofyear */ class Horde_ActiveSync_Message_TaskRecurrence extends Horde_ActiveSync_Message_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Autodiscover.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Autodiscover.php index f06dfc697b2..a728934734d 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Autodiscover.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Autodiscover.php @@ -22,6 +22,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_Autodiscover extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Base.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Base.php index 75954f42c62..0eb27d1c693 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Base.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Base.php @@ -22,6 +22,7 @@ * @copyright 2010-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ abstract class Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderCreate.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderCreate.php index 72ce36bca98..c542b59a1ab 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderCreate.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderCreate.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_FolderCreate extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderSync.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderSync.php index 600e2810004..46b9a0363b2 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderSync.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderSync.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_FolderSync extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetAttachment.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetAttachment.php index 1e3af0029b5..d496a00a68e 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetAttachment.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetAttachment.php @@ -33,6 +33,7 @@ * @copyright 2011-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_GetAttachment extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetHierarchy.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetHierarchy.php index bdffd1e204a..046fc65dc1c 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetHierarchy.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetHierarchy.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_GetHierarchy extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php index 1913c872600..7b45acd05ec 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_GetItemEstimate extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/ItemOperations.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/ItemOperations.php index bba18826a6c..a02dc4ddc5d 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/ItemOperations.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/ItemOperations.php @@ -33,6 +33,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_ItemOperations extends Horde_ActiveSync_Request_SyncBase { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/MeetingResponse.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/MeetingResponse.php index 6f780b23afe..c57e1a30d89 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/MeetingResponse.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/MeetingResponse.php @@ -32,6 +32,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_MeetingResponse extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php index cfbcb685dd0..88b54c8ffa7 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php @@ -33,6 +33,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_MoveItems extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php index 6cc8dd330af..e3ca9a033b8 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_Ping extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Provision.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Provision.php index de4b0a55a17..b30a9df1c83 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Provision.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Provision.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_Provision extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/ResolveRecipients.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/ResolveRecipients.php index ac6cf05c9b6..50a1592df32 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/ResolveRecipients.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/ResolveRecipients.php @@ -22,6 +22,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_ResolveRecipients extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Search.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Search.php index f15db50c765..b8dba6383ae 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Search.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Search.php @@ -33,6 +33,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_Search extends Horde_ActiveSync_Request_SyncBase { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SendMail.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SendMail.php index e797788a4b6..db62af163bb 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SendMail.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SendMail.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_SendMail extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php index ac08f3f3e7e..10487056bf5 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_Settings extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartForward.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartForward.php index 34a6d708c03..5bab3c53f6f 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartForward.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartForward.php @@ -35,6 +35,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_SmartForward extends Horde_ActiveSync_Request_SendMail { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartReply.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartReply.php index b16f9779833..b9caa926787 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartReply.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartReply.php @@ -35,6 +35,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_SmartReply extends Horde_ActiveSync_Request_SendMail { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php index e4d73019821..41830443566 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php @@ -33,6 +33,7 @@ * @copyright 2009-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_Sync extends Horde_ActiveSync_Request_SyncBase { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SyncBase.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SyncBase.php index 31786561911..ec969ec2a2f 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/SyncBase.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/SyncBase.php @@ -22,6 +22,7 @@ * @copyright 2010-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ abstract class Horde_ActiveSync_Request_SyncBase extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/ValidateCert.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/ValidateCert.php index 4b8b7a24be9..869290b03b6 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/ValidateCert.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/ValidateCert.php @@ -34,6 +34,7 @@ * @copyright 2012-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal */ class Horde_ActiveSync_Request_ValidateCert extends Horde_ActiveSync_Request_Base { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/State/Mongo.php b/framework/ActiveSync/lib/Horde/ActiveSync/State/Mongo.php index 3e247b271de..5596d371a69 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/State/Mongo.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/State/Mongo.php @@ -216,7 +216,7 @@ public function __construct(array $params = array()) * @param string $serverid The new serverid for this uid. * * @throws Horde_ActiveSync_Exception - * @since 2.4.0 + * @since 2.4.0 */ public function updateServerIdInState($uid, $serverid) { diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php b/framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php index d205af34cce..bd044bd6c29 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php @@ -23,20 +23,21 @@ * @copyright 2010-2014 Horde LLC (http://www.horde.org) * @author Michael J Rubinsky * @package ActiveSync + * @internal Not intended for use outside of the Horde_ActiveSync library. * - * @property array folders The folders cache. - * @property integer hbinterval The heartbeat interval (in seconds). - * @property integer wait The wait interval (in minutes). - * @property integer pingheartbeat The heartbeat used in PING requests. - * @property string hierarchy The hierarchy synckey. - * @property array confirmed_synckeys Array of synckeys being confirmed during - * a looping sync. - * @property integer lastuntil Timestamp representing the last planned - * looping sync end time. - * @property integer lasthbsyncstarted Timestamp of the start of the last - * looping sync. - * @property integer lastsyncendnormal Timestamp of the last looping sync that - * ended normally. + * @property array $folders The folders cache. + * @property integer $hbinterval The heartbeat interval (in seconds). + * @property integer $wait The wait interval (in minutes). + * @property integer $pingheartbeat The heartbeat used in PING requests. + * @property string $hierarchy The hierarchy synckey. + * @property array $confirmed_synckeys Array of synckeys being confirmed during + * a looping sync. + * @property integer $lastuntil Timestamp representing the last planned + * looping sync end time. + * @property integer $lasthbsyncstarted Timestamp of the start of the last + * looping sync. + * @property integer $lastsyncendnormal Timestamp of the last looping sync that + * ended normally. */ class Horde_ActiveSync_SyncCache {