Example #1
0
 /**
  * Adds a SQL Comment to the dump
  * @param string $comment
  * @return \mithra62\BackupPro\Backup\Database\DbAbstract
  */
 public function writeCommentBlock($comment)
 {
     $this->context->writeOut("-- " . PHP_EOL);
     $this->context->writeOut("-- " . $comment . PHP_EOL);
     $this->context->writeOut("-- " . PHP_EOL);
     return $this;
 }