diff options
| author | Mate Bartus <mate.bartus@gmail.com> | 2015-07-10 14:54:21 +0200 |
|---|---|---|
| committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-10 22:15:03 +0200 |
| commit | 051b7d1867351df293d055b62e0eb051758f90da (patch) | |
| tree | 460c397ae47b6caf2737ffa2632d93491ac892fb /tests/installer/mocks/test_installer_module.php | |
| parent | 59d22eff497ea1107851067aa99eed4c979c0766 (diff) | |
| download | forums-051b7d1867351df293d055b62e0eb051758f90da.tar forums-051b7d1867351df293d055b62e0eb051758f90da.tar.gz forums-051b7d1867351df293d055b62e0eb051758f90da.tar.bz2 forums-051b7d1867351df293d055b62e0eb051758f90da.tar.xz forums-051b7d1867351df293d055b62e0eb051758f90da.zip | |
[ticket/13740] Module base test
PHPBB3-13740
Diffstat (limited to 'tests/installer/mocks/test_installer_module.php')
| -rw-r--r-- | tests/installer/mocks/test_installer_module.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/installer/mocks/test_installer_module.php b/tests/installer/mocks/test_installer_module.php new file mode 100644 index 0000000000..e6ebbba263 --- /dev/null +++ b/tests/installer/mocks/test_installer_module.php @@ -0,0 +1,20 @@ +<?php +/** + * + * This file is part of the phpBB Forum Software package. + * + * @copyright (c) phpBB Limited <https://www.phpbb.com> + * @license GNU General Public License, version 2 (GPL-2.0) + * + * For full copyright and license information, please see + * the docs/CREDITS.txt file. + * + */ + +class test_installer_module extends \phpbb\install\module_base +{ + public function get_navigation_stage_path() + { + return array(); + } +} |
