From 08657fb88bb32954881c4668afd8a357735b83b8 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sun, 30 Jun 2019 23:06:39 -0400 Subject: [PATCH] [#14213] - Fixing references; removed unecessary files --- tests/_data/fixtures/Mvc/View/Engine/Mustache.php | 2 +- tests/_data/fixtures/Mvc/View/Engine/Twig.php | 2 +- tests/_data/fixtures/views/partials/footer.volt.php | 1 - tests/_data/fixtures/views/partials/header.volt.php | 1 - tests/_data/fixtures/views/partials/header2.volt.php | 1 - tests/_data/fixtures/views/partials/header3.volt.php | 1 - 6 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 tests/_data/fixtures/views/partials/footer.volt.php delete mode 100644 tests/_data/fixtures/views/partials/header.volt.php delete mode 100644 tests/_data/fixtures/views/partials/header2.volt.php delete mode 100644 tests/_data/fixtures/views/partials/header3.volt.php diff --git a/tests/_data/fixtures/Mvc/View/Engine/Mustache.php b/tests/_data/fixtures/Mvc/View/Engine/Mustache.php index 278cca605a5..04f905bdc25 100644 --- a/tests/_data/fixtures/Mvc/View/Engine/Mustache.php +++ b/tests/_data/fixtures/Mvc/View/Engine/Mustache.php @@ -17,7 +17,7 @@ use Phalcon\Mvc\View\Engine\EngineInterface; use Phalcon\Mvc\ViewBaseInterface; -class Mustache extends Engine implements EngineInterface +class Mustache extends AbstractEngine implements EngineInterface { /** * The internal Mustache Engine diff --git a/tests/_data/fixtures/Mvc/View/Engine/Twig.php b/tests/_data/fixtures/Mvc/View/Engine/Twig.php index 82159de1818..45f5a1bd590 100644 --- a/tests/_data/fixtures/Mvc/View/Engine/Twig.php +++ b/tests/_data/fixtures/Mvc/View/Engine/Twig.php @@ -18,7 +18,7 @@ use Twig_Environment; use Twig_Loader_Filesystem; -class Twig extends Engine implements EngineInterface +class Twig extends AbstractEngine implements EngineInterface { protected $twig; diff --git a/tests/_data/fixtures/views/partials/footer.volt.php b/tests/_data/fixtures/views/partials/footer.volt.php deleted file mode 100644 index 031988e5b1c..00000000000 --- a/tests/_data/fixtures/views/partials/footer.volt.php +++ /dev/null @@ -1 +0,0 @@ -

This is the footer

\ No newline at end of file diff --git a/tests/_data/fixtures/views/partials/header.volt.php b/tests/_data/fixtures/views/partials/header.volt.php deleted file mode 100644 index 67249e04933..00000000000 --- a/tests/_data/fixtures/views/partials/header.volt.php +++ /dev/null @@ -1 +0,0 @@ -

This is the header

\ No newline at end of file diff --git a/tests/_data/fixtures/views/partials/header2.volt.php b/tests/_data/fixtures/views/partials/header2.volt.php deleted file mode 100644 index ad9097516bd..00000000000 --- a/tests/_data/fixtures/views/partials/header2.volt.php +++ /dev/null @@ -1 +0,0 @@ -

This is the title

\ No newline at end of file diff --git a/tests/_data/fixtures/views/partials/header3.volt.php b/tests/_data/fixtures/views/partials/header3.volt.php deleted file mode 100644 index 24dff719bfe..00000000000 --- a/tests/_data/fixtures/views/partials/header3.volt.php +++ /dev/null @@ -1 +0,0 @@ -This is the title \ No newline at end of file