Example #1
0
 public static function configureTransfer(BaseCommand $command, $name = 'transfer', $output = true)
 {
     $command->setName($name)->setDescription('Clone all nodes and relations from one Neo4j Server database into another.');
     DumpCommand::configureSourceConnectionOptions($command);
     if ($output) {
         DumpCommand::configureOutputOptions($command);
     }
     ImportCommand::configureTargetConnectionOptions($command);
 }