diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-10-30 13:05:28 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-10-30 13:05:28 +0100 |
commit | 7aa8f6461f1e85cf91931f56b95384e54fec07c2 (patch) | |
tree | 4f2b5f2741da82f1e318b0d5599dbd2e4e2ea3b3 /phpBB/phpbb/db/migration | |
parent | 6ac46ad46976c07ff054b313f2e2ee4dee9e0172 (diff) | |
download | forums-7aa8f6461f1e85cf91931f56b95384e54fec07c2.tar forums-7aa8f6461f1e85cf91931f56b95384e54fec07c2.tar.gz forums-7aa8f6461f1e85cf91931f56b95384e54fec07c2.tar.bz2 forums-7aa8f6461f1e85cf91931f56b95384e54fec07c2.tar.xz forums-7aa8f6461f1e85cf91931f56b95384e54fec07c2.zip |
[task/code-sniffer] Remove the IN_PHPBB check side-effect from class files.
PHPBB3-11980
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r-- | phpBB/phpbb/db/migration/exception.php | 8 | ||||
-rw-r--r-- | phpBB/phpbb/db/migration/migration.php | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/phpBB/phpbb/db/migration/exception.php b/phpBB/phpbb/db/migration/exception.php index 58e29b5218..cfe546d1ab 100644 --- a/phpBB/phpbb/db/migration/exception.php +++ b/phpBB/phpbb/db/migration/exception.php @@ -10,14 +10,6 @@ namespace phpbb\db\migration; /** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * The migrator is responsible for applying new migrations in the correct order. * * @package db diff --git a/phpBB/phpbb/db/migration/migration.php b/phpBB/phpbb/db/migration/migration.php index aff3837279..b32de00871 100644 --- a/phpBB/phpbb/db/migration/migration.php +++ b/phpBB/phpbb/db/migration/migration.php @@ -10,14 +10,6 @@ namespace phpbb\db\migration; /** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * Abstract base class for database migrations * * Each migration consists of a set of schema and data changes to be implemented |