From 40937e21c58399a847d04f23423622b0e1894446 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Sun, 29 Jun 2014 00:29:08 +0200 Subject: [ticket/12775] Renamed to \phpbb\di\container_builder PHPBB3-12775 --- tests/mock/container_factory.php | 20 -------------------- tests/mock/phpbb_di_container_builder.php | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 tests/mock/container_factory.php create mode 100644 tests/mock/phpbb_di_container_builder.php (limited to 'tests/mock') diff --git a/tests/mock/container_factory.php b/tests/mock/container_factory.php deleted file mode 100644 index d547c8dd68..0000000000 --- a/tests/mock/container_factory.php +++ /dev/null @@ -1,20 +0,0 @@ - -* @license GNU General Public License, version 2 (GPL-2.0) -* -* For full copyright and license information, please see -* the docs/CREDITS.txt file. -* -*/ - -class phpbb_mock_container_factory extends \phpbb\di\container_factory -{ - protected function get_container_filename() - { - return $this->phpbb_root_path . '../../tmp/container.' . $this->php_ext; - } -} diff --git a/tests/mock/phpbb_di_container_builder.php b/tests/mock/phpbb_di_container_builder.php new file mode 100644 index 0000000000..235fa32b26 --- /dev/null +++ b/tests/mock/phpbb_di_container_builder.php @@ -0,0 +1,20 @@ + +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +class phpbb_mock_phpbb_di_container_builder extends \phpbb\di\container_factory +{ + protected function get_container_filename() + { + return $this->phpbb_root_path . '../../tmp/container.' . $this->php_ext; + } +} -- cgit v1.2.1