Fixed return statements in SchemaTool.
This commit is contained in:
parent
71a68a5c6f
commit
2bfbe03e37
4 changed files with 6 additions and 1 deletions
|
@ -65,6 +65,7 @@ abstract class AbstractCommand extends Command
|
||||||
return $this->executeSchemaCommand($input, $output, $tool, $metadatas);
|
return $this->executeSchemaCommand($input, $output, $tool, $metadatas);
|
||||||
} else {
|
} else {
|
||||||
$output->writeln('No Metadata Classes to process.');
|
$output->writeln('No Metadata Classes to process.');
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,5 +74,7 @@ EOT
|
||||||
$schemaTool->createSchema($metadatas);
|
$schemaTool->createSchema($metadatas);
|
||||||
$output->writeln('Database schema created successfully!');
|
$output->writeln('Database schema created successfully!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -116,5 +116,7 @@ EOT
|
||||||
}
|
}
|
||||||
|
|
||||||
$output->writeln('Nothing to drop. The database is empty!');
|
$output->writeln('Nothing to drop. The database is empty!');
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,7 +110,7 @@ EOT
|
||||||
if (0 === count($sqls)) {
|
if (0 === count($sqls)) {
|
||||||
$output->writeln('Nothing to update - your database is already in sync with the current entity metadata.');
|
$output->writeln('Nothing to update - your database is already in sync with the current entity metadata.');
|
||||||
|
|
||||||
return;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
$dumpSql = true === $input->getOption('dump-sql');
|
$dumpSql = true === $input->getOption('dump-sql');
|
||||||
|
|
Loading…
Add table
Reference in a new issue