private function moveTableClasses() { if ($this->getOptionsValue('generate-table') === true) { if (!Misc::isEmpty($to = $this->getOptionsValue('table-dir'))) { $from = $this->getOptionsValue('models-path'); $to = $from . '/' . $to; $opt = array('suffix' => 'Table' . self::getOptionsValue('suffix')); Ftp::moveFiles($from, $to, false, false, $opt); } } }