Commit cc7b52ec authored by Martin D'Aloia's avatar Martin D'Aloia Committed by Benjamin Eberlei

Changed 'implements' by 'extends' because AbstractSchemaSynchronizer is a...

Changed 'implements' by 'extends' because AbstractSchemaSynchronizer is a class not an interface (and Eclipse PDT shows a warning that say that "The type SQLAzureFederationsSynchronizer must implement the inherited method processSqlSafely, processSql" but those methods are already implemented on AbstractSchemaSynchronizer).
parent f7678be4
......@@ -36,7 +36,7 @@ use Doctrine\DBAL\Sharding\SingleDatabaseSynchronizer;
*
* @author Benjamin Eberlei <kontakt@beberlei.de>
*/
class SQLAzureFederationsSynchronizer implements AbstractSchemaSynchronizer
class SQLAzureFederationsSynchronizer extends AbstractSchemaSynchronizer
{
const FEDERATION_TABLE_FEDERATED = 'azure.federated';
const FEDERATION_DISTRIBUTION_NAME = 'azure.federatedOnDistributionName';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment