Beispiel #1
0
 /**
  * Konstruktor
  * @param string $filePath
  */
 public function __construct($filePath)
 {
     $this->db = \fpcm\classes\baseconfig::$fpcmDatabase;
     $this->isPg = $this->db->getDbtype() == 'pgsql' ? true : false;
     $this->colTypes = $this->db->getYaTDLDataTypes();
     include_once \fpcm\classes\loader::libGetFilePath('spyc', 'Spyc.php');
     $this->yamlArray = \Spyc::YAMLLoad($filePath);
 }