position = (float) $position; $this->width = (float) $width; $this->label = $label; $this->childs = $childs; $this->isZero = (bool) $isZero; $this->isLast = (bool) $isLast; } /** * __set_state * * @param array $properties Struct properties * @return void * @ignore */ public function __set_state( array $properties ) { $this->position = $properties['position']; $this->width = $properties['width']; $this->label = $properties['label']; $this->childs = $properties['childs']; $this->isZero = $properties['isZero']; $this->isLast = $properties['isLast']; } } ?>