Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/Request/SmsValidation/Invalidate.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_Invalidate
00037     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
00038 {
00044     public $number = null;
00045 
00053     public function __construct($environment, $number = null)
00054     {
00055         parent::__construct($environment);
00056         $this->setNumber($number);
00057     }
00058 
00064     public function getNumber()
00065     {
00066         return $this->number;
00067     }
00068 
00075     public function setNumber($number)
00076     {
00077         $this->number = $number;
00078         return $this;
00079     }
00080 }
 All Data Structures Namespaces Files Functions Variables Enumerations