golden hour
/home/doctorbruno/public_html/taeionline.com/support/include/laminas-mail/src/Storage/Message
⬆️ Go Up
Upload
File/Folder
Size
Actions
File.php
1.58 KB
Del
OK
MessageInterface.php
599 B
Del
OK
Edit: MessageInterface.php
<?php namespace Laminas\Mail\Storage\Message; interface MessageInterface { /** * return toplines as found after headers * * @return string toplines */ public function getTopLines(); /** * check if flag is set * * @param mixed $flag a flag name, use constants defined in Laminas\Mail\Storage * @return bool true if set, otherwise false */ public function hasFlag($flag); /** * get all set flags * * @return array array with flags, key and value are the same for easy lookup */ public function getFlags(); }
Save