From 2c0fb0c23792a5c50c8999380ebf879401b24407 Mon Sep 17 00:00:00 2001 From: Vladimir Tsykun Date: Sat, 30 Dec 2017 13:36:03 +0300 Subject: [PATCH] Fix unable to find template "OkvpnMigrationBundle::schema-diff-template.php.twig" on symfony 3.4 --- src/Tools/SchemaDiffDumper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/SchemaDiffDumper.php b/src/Tools/SchemaDiffDumper.php index 33f4a96..c17c1fe 100644 --- a/src/Tools/SchemaDiffDumper.php +++ b/src/Tools/SchemaDiffDumper.php @@ -6,7 +6,7 @@ class SchemaDiffDumper { - const SCHEMA_TEMPLATE = 'OkvpnMigrationBundle::schema-diff-template.php.twig'; + const SCHEMA_TEMPLATE = '@OkvpnMigration/schema-diff-template.php.twig'; const DEFAULT_CLASS_NAME = 'AllMigration'; const DEFAULT_VERSION = 'v1_0';