Example #1
0
 /**
  * Backup a MySQL database
  *
  * @return Backup
  */
 private function backupMySqlDatabase()
 {
     foreach ($this->getTables() as $table) {
         $filepath = $this->getFolderForToday($table);
         $this->files->write($filepath, $this->exportTable($table));
     }
     return $this;
 }