示例#1
0
文件: Fact.php 项目: vkoptev/olap
 /**
  * Check structure of cube
  */
 public function checkStructure()
 {
     foreach ($this->getDimensions() as $dimension) {
         $dimension->checkStructure();
     }
     parent::checkStructure();
     $this->checkSetter();
 }
示例#2
0
 public function checkStructure()
 {
     parent::checkStructure();
     $this->checkSetter();
 }