vendor/swiftmailer/lib/classes/Swift/Mime/ParameterizedHeader.php
changeset 0 7f95f8617b0b
equal deleted inserted replaced
-1:000000000000 0:7f95f8617b0b
       
     1 <?php
       
     2 
       
     3 /*
       
     4  * This file is part of SwiftMailer.
       
     5  * (c) 2004-2009 Chris Corbyn
       
     6  *
       
     7  * For the full copyright and license information, please view the LICENSE
       
     8  * file that was distributed with this source code.
       
     9  */
       
    10 
       
    11 
       
    12 /**
       
    13  * A MIME Header with parameters.
       
    14  * @package Swift
       
    15  * @subpackage Mime
       
    16  * @author Chris Corbyn
       
    17  */
       
    18 interface Swift_Mime_ParameterizedHeader extends Swift_Mime_Header
       
    19 {
       
    20   
       
    21   /**
       
    22    * Set the value of $parameter.
       
    23    * @param string $parameter
       
    24    * @param string $value
       
    25    */
       
    26   public function setParameter($parameter, $value);
       
    27   
       
    28   /**
       
    29    * Get the value of $parameter.
       
    30    * @return string
       
    31    */
       
    32   public function getParameter($parameter);
       
    33   
       
    34 }