public function __destruct()
 {
     $this->viewName = NULL;
     $this->model = NULL;
     $this->view = NULL;
     parent::__destruct();
 }
示例#2
0
文件: Mail.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->to = NULL;
     $this->subject = NULL;
     $this->text = NULL;
     parent::__destruct();
 }
示例#3
0
文件: Color.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->red = NULL;
     $this->green = NULL;
     $this->blue = NULL;
     parent::__destruct();
 }
示例#4
0
 public function __destruct()
 {
     $this->pathToTemplate = NULL;
     $this->tableData = NULL;
     $this->pageName = NULL;
     parent::__destruct();
 }
示例#5
0
 public function __destruct()
 {
     $this->originalData = NULL;
     $this->length = NULL;
     $this->sortedData = NULL;
     parent::__destruct();
 }
示例#6
0
文件: Matrix.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->matrix = NULL;
     $this->matrixSizeA = NULL;
     $this->matrixSizeB = NULL;
     parent::__destruct();
 }
示例#7
0
 public function __construct($message = '', $logged = FALSE, $code = 0, \Exception $previous = NULL)
 {
     parent::__construct($message, $code, $previous);
     if ($logged == TRUE || Object::getAllDebug()) {
         new LoggedException($message, $code, $previous);
     }
 }
示例#8
0
 public function __destruct()
 {
     $this->pointA = NULL;
     $this->pointB = NULL;
     $this->pointC = NULL;
     parent::__destruct();
 }
示例#9
0
文件: Line.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->pointA = NULL;
     $this->pointB = NULL;
     parent::__destruct();
     // TODO: Change the autogenerated stub
 }
示例#10
0
 function __destruct()
 {
     $this->matches = NULL;
     $this->string = NULL;
     self::$separators = NULL;
     parent::__destruct();
 }
示例#11
0
 public function __destruct()
 {
     $this->run();
     $this->longOfIP = NULL;
     $this->myIp = NULL;
     parent::__destruct();
 }
示例#12
0
 public function __construct(array $data, $pattern, $debug = FALSE)
 {
     parent::__construct();
     $this->data = $data;
     $this->length = count($this->data);
     $this->pattern = $pattern;
     $this->search();
 }
示例#13
0
 public function __destruct()
 {
     $this->lang = NULL;
     $this->langName = NULL;
     $this->meta = NULL;
     $this->allPackages = NULL;
     parent::__destruct();
 }
示例#14
0
 public function __destruct()
 {
     $this->formData = NULL;
     $this->method = NULL;
     $this->action = NULL;
     $this->select = NULL;
     parent::__destruct();
 }
示例#15
0
 public function __destruct()
 {
     $this->ipParted = NULL;
     $this->ipCoded = NULL;
     $this->ipCountPart = NULL;
     $this->safeMode = NULL;
     parent::__destruct();
 }
示例#16
0
 public function __destruct()
 {
     $this->data = NULL;
     $this->childrenCount = NULL;
     $this->directChildrenCount = NULL;
     //
     parent::__destruct();
 }
示例#17
0
文件: Square.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->pointLeftDown = NULL;
     $this->pointLeftUp = NULL;
     $this->pointRightDown = NULL;
     $this->pointRightUp = NULL;
     $this->length = NULL;
     parent::__destruct();
 }
示例#18
0
 public function __construct($string, $pattern)
 {
     parent::__construct();
     if (!is_string($string)) {
         throw new IllegalArgumentException();
     }
     $this->string = new StringW($string);
     $this->pattern = new StringW($pattern);
 }
示例#19
0
 public function __destruct()
 {
     $this->content = NULL;
     $this->objectsCounter = NULL;
     $this->multiple = NULL;
     $this->size = NULL;
     $this->disabled = NULL;
     parent::__destruct();
 }
示例#20
0
文件: Images.php 项目: rendix2/QW_MVS
 public function __construct($width, $height, $trueColor = FALSE)
 {
     parent::__construct();
     if (!Validator::isNumber($width) || !Validator::isNumber($height)) {
         throw new IllegalArgumentException();
     }
     $this->imageResource = $trueColor == TRUE ? imagecreatetruecolor($width, $height) : imagecreate($width, $height);
     $this->height = $height;
     $this->width = $width;
 }
示例#21
0
 public function __destruct()
 {
     self::$AllQueryCount = NULL;
     self::$AllConnectionsCount = NULL;
     $this->queryCount = NULL;
     $this->dbName = NULL;
     $this->host = NULL;
     $this->options = NULL;
     $this->userName = NULL;
     $this->userPassword = NULL;
     $this->log = NULL;
     $this->disconnect();
     parent::__destruct();
 }
示例#22
0
 public function __construct($realPart, $imaginaryPart)
 {
     parent::__construct();
     $this->real = $realPart;
     $this->imaginary = $imaginaryPart;
 }
示例#23
0
 public function __destruct()
 {
     $this->hash = NULL;
     parent::__destruct();
 }
示例#24
0
 public function __construct()
 {
     parent::__construct();
 }
示例#25
0
文件: File.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->filePath = NULL;
     parent::__destruct();
 }
示例#26
0
文件: Double.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->double = NULL;
     parent::__destruct();
 }
示例#27
0
 public function __construct()
 {
     parent::__construct();
     $this->size = 0;
 }
示例#28
0
文件: Edge.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     parent::__destruct();
 }
示例#29
0
 public function __destruct()
 {
     $this->integer = NULL;
     parent::__destruct();
 }
示例#30
0
文件: Point.php 项目: rendix2/QW_MVS
 public function __destruct()
 {
     $this->x = NULL;
     $this->y = NULL;
     parent::__destruct();
 }