|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00031 abstract class Zend_Service_DeveloperGarden_Request_RequestAbstract 00032 { 00038 public $environment = null; 00039 00046 public function __construct($environment) 00047 { 00048 $this->setEnvironment($environment); 00049 } 00050 00057 public function setEnvironment($environment) 00058 { 00059 $this->environment = $environment; 00060 return $this; 00061 } 00062 00068 public function getEnvironment() 00069 { 00070 return $this->environment; 00071 } 00072 }