Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Soap/Wsdl/Strategy/Abstract.php
Go to the documentation of this file.
00001 <?php
00026 require_once "Zend/Soap/Wsdl/Strategy/Interface.php";
00027 
00037 abstract class Zend_Soap_Wsdl_Strategy_Abstract implements Zend_Soap_Wsdl_Strategy_Interface
00038 {
00044     protected $_context;
00045 
00052     public function setContext(Zend_Soap_Wsdl $context)
00053     {
00054         $this->_context = $context;
00055     }
00056 
00062     public function getContext()
00063     {
00064         return $this->_context;
00065     }
00066 }
 All Data Structures Namespaces Files Functions Variables Enumerations