diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2014-09-17 00:37:07 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2014-09-17 00:37:07 +0200 |
| commit | 5fa2d197566c0f443bbdd71101b6c7876158dea6 (patch) | |
| tree | b1284f0f3257d24a155efc974ab4b1482191b7e8 /tests/extension/ext/vendor2/bar | |
| parent | b82a39fea9c48cb36677ed0aaf2dcb5531848d31 (diff) | |
| parent | 4a06511d853024193435fd9b2e347ff292589420 (diff) | |
| download | forums-5fa2d197566c0f443bbdd71101b6c7876158dea6.tar forums-5fa2d197566c0f443bbdd71101b6c7876158dea6.tar.gz forums-5fa2d197566c0f443bbdd71101b6c7876158dea6.tar.bz2 forums-5fa2d197566c0f443bbdd71101b6c7876158dea6.tar.xz forums-5fa2d197566c0f443bbdd71101b6c7876158dea6.zip | |
Merge branch 'develop-ascraeus' into develop
Diffstat (limited to 'tests/extension/ext/vendor2/bar')
| -rw-r--r-- | tests/extension/ext/vendor2/bar/migration/migration.php | 18 | ||||
| -rw-r--r-- | tests/extension/ext/vendor2/bar/migrations/migration.php | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/tests/extension/ext/vendor2/bar/migration/migration.php b/tests/extension/ext/vendor2/bar/migration/migration.php new file mode 100644 index 0000000000..fc27656d10 --- /dev/null +++ b/tests/extension/ext/vendor2/bar/migration/migration.php @@ -0,0 +1,18 @@ +<?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. +* +*/ + +namespace vendor2\bar\migration; + +class migration extends \phpbb\db\migration\migration +{ +} diff --git a/tests/extension/ext/vendor2/bar/migrations/migration.php b/tests/extension/ext/vendor2/bar/migrations/migration.php new file mode 100644 index 0000000000..71caa34fd9 --- /dev/null +++ b/tests/extension/ext/vendor2/bar/migrations/migration.php @@ -0,0 +1,18 @@ +<?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. +* +*/ + +namespace vendor2\bar\migrations; + +class migration extends \phpbb\db\migration\migration +{ +} |
