Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/Request/SmsValidation/Validate.php
Go to the documentation of this file.
00001 <?php
00026 require_once 'Zend/Service/DeveloperGarden/Request/RequestAbstract.php';
00027 
00036 class Zend_Service_DeveloperGarden_Request_SmsValidation_Validate
00037     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
00038 {
00044     public $keyword = null;
00045 
00051     public $number = null;
00052 
00058     public function getKeyword ()
00059     {
00060         return $this->keyword;
00061     }
00062 
00070     public function __construct($environment, $keyword = null, $number = null)
00071     {
00072         parent::__construct($environment);
00073         $this->setKeyword($keyword)
00074              ->setNumber($number);
00075     }
00076 
00083     public function setKeyword($keyword)
00084     {
00085         $this->keyword = $keyword;
00086         return $this;
00087     }
00088 
00094     public function getNumber()
00095     {
00096         return $this->number;
00097     }
00098 
00105     public function setNumber($number)
00106     {
00107         $this->number = $number;
00108         return $this;
00109     }
00110 }
 All Data Structures Namespaces Files Functions Variables Enumerations