00001 <?php 00024 class BaseCommand extends BaseFrameworkSystem { 00028 private $controllerName = ""; 00029 00036 protected function __construct ($className) { 00037 // Call parent constructor 00038 parent::__construct($className); 00039 } 00040 00047 public final function setControllerName ($controllerName) { 00048 $this->controllerName = (string) $controllerName; 00049 } 00050 00056 public final function getControllerName () { 00057 return $this->controllerName; 00058 } 00059 } 00060 00061 // [EOF] 00062 ?>
1.5.6