Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed annotations #536

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/Attachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
*
* @package Webklex\PHPIMAP
*
* @property integer part_number
* @property integer size
* @property string content
* @property string type
* @property string content_type
* @property string id
* @property string hash
* @property string name
* @property string description
* @property string filename
* @property ?string disposition
* @property string img_src
* @property integer $part_number
* @property integer $size
* @property string $content
* @property string $type
* @property string $content_type
* @property string $id
* @property string $hash
* @property string $name
* @property string $description
* @property string $filename
* @property ?string $disposition
* @property string $img_src
*
* @method integer getPartNumber()
* @method integer setPartNumber(integer $part_number)
Expand Down
32 changes: 16 additions & 16 deletions src/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,22 @@
*
* @package Webklex\PHPIMAP
*
* @property integer msglist
* @property integer uid
* @property integer msgn
* @property integer size
* @property Attribute subject
* @property Attribute message_id
* @property Attribute message_no
* @property Attribute references
* @property Attribute date
* @property Attribute from
* @property Attribute to
* @property Attribute cc
* @property Attribute bcc
* @property Attribute reply_to
* @property Attribute in_reply_to
* @property Attribute sender
* @property integer $msglist
* @property integer $uid
* @property integer $msgn
* @property integer $size
* @property Attribute $subject
* @property Attribute $message_id
* @property Attribute $message_no
* @property Attribute $references
* @property Attribute $date
* @property Attribute $from
* @property Attribute $to
* @property Attribute $cc
* @property Attribute $bcc
* @property Attribute $reply_to
* @property Attribute $in_reply_to
* @property Attribute $sender
*
* @method integer getMsglist()
* @method integer setMsglist($msglist)
Expand Down