コード例 #1
0
 /**
  * @return array
  * @throws Exception
  */
 public function getFields()
 {
     if (empty($this->structure)) {
         throw new Exception("Structure not set");
     }
     return array_keys($this->structure->getFields());
 }
コード例 #2
0
ファイル: StructureTest.php プロジェクト: okite11/frames21
 public function testGetFields()
 {
     $this->assertEquals(['id' => 'int', 'name' => 'varchar'], $this->structure->getFields());
 }