web/lib/Zend/Service/DeveloperGarden/Request/SendSms/SendSmsAbstract.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    14  * to license@zend.com so we can send you a copy immediately.
    14  * to license@zend.com so we can send you a copy immediately.
    15  *
    15  *
    16  * @category   Zend
    16  * @category   Zend
    17  * @package    Zend_Service
    17  * @package    Zend_Service
    18  * @subpackage DeveloperGarden
    18  * @subpackage DeveloperGarden
    19  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    19  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    20  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    20  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    21  * @version    $Id: SendSmsAbstract.php 20418 2010-01-19 11:43:30Z bate $
    21  * @version    $Id: SendSmsAbstract.php 24593 2012-01-05 20:35:02Z matthew $
    22  */
    22  */
    23 
    23 
    24 /**
    24 /**
    25  * @see Zend_Service_DeveloperGarden_Request_RequestAbstract
    25  * @see Zend_Service_DeveloperGarden_Request_RequestAbstract
    26  */
    26  */
    28 
    28 
    29 /**
    29 /**
    30  * @category   Zend
    30  * @category   Zend
    31  * @package    Zend_Service
    31  * @package    Zend_Service
    32  * @subpackage DeveloperGarden
    32  * @subpackage DeveloperGarden
    33  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    33  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    34  * @author     Marco Kaiser
    34  * @author     Marco Kaiser
    35  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    35  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    36  */
    36  */
    37 abstract class Zend_Service_DeveloperGarden_Request_SendSms_SendSmsAbstract
    37 abstract class Zend_Service_DeveloperGarden_Request_SendSms_SendSmsAbstract
    38     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
    38     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
    70      * message length
    70      * message length
    71      *
    71      *
    72      * @var array
    72      * @var array
    73      */
    73      */
    74     private $_specialChars = array(
    74     private $_specialChars = array(
    75         '|', 
    75         '|',
    76         '^', 
    76         '^',
    77         '{', 
    77         '{',
    78         '}', 
    78         '}',
    79         '[', 
    79         '[',
    80         ']', 
    80         ']',
    81         '~', 
    81         '~',
    82         '\\', 
    82         '\\',
    83         "\n",
    83         "\n",
    84         // '€', removed because its counted in utf8 correctly
    84         // '€', removed because its counted in utf8 correctly
    85     );
    85     );
    86 
    86 
    87     /**
    87     /**
   205     }
   205     }
   206 
   206 
   207     /**
   207     /**
   208      * sets a new accounts
   208      * sets a new accounts
   209      *
   209      *
   210      * @param $account the $account to set
   210      * @param int $account the $account to set
   211      * @return Zend_Service_DeveloperGarden_Request_SendSms_SendSmsAbstract
   211      * @return Zend_Service_DeveloperGarden_Request_SendSms_SendSmsAbstract
   212      */
   212      */
   213     public function setAccount($account)
   213     public function setAccount($account)
   214     {
   214     {
   215         $this->account = $account;
   215         $this->account = $account;