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/search/sphinx | |
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/search/sphinx')
-rw-r--r-- | phpBB/phpbb/search/sphinx/config.php | 8 | ||||
-rw-r--r-- | phpBB/phpbb/search/sphinx/config_comment.php | 8 | ||||
-rw-r--r-- | phpBB/phpbb/search/sphinx/config_section.php | 8 | ||||
-rw-r--r-- | phpBB/phpbb/search/sphinx/config_variable.php | 8 |
4 files changed, 0 insertions, 32 deletions
diff --git a/phpBB/phpbb/search/sphinx/config.php b/phpBB/phpbb/search/sphinx/config.php index 262d6008cc..cb8e4524df 100644 --- a/phpBB/phpbb/search/sphinx/config.php +++ b/phpBB/phpbb/search/sphinx/config.php @@ -10,14 +10,6 @@ namespace phpbb\search\sphinx; /** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * \phpbb\search\sphinx\config * An object representing the sphinx configuration * Can read it from file and write it back out after modification diff --git a/phpBB/phpbb/search/sphinx/config_comment.php b/phpBB/phpbb/search/sphinx/config_comment.php index 77a943377d..20b1c19af1 100644 --- a/phpBB/phpbb/search/sphinx/config_comment.php +++ b/phpBB/phpbb/search/sphinx/config_comment.php @@ -10,14 +10,6 @@ namespace phpbb\search\sphinx; /** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * \phpbb\search\sphinx\config_comment * Represents a comment inside the sphinx configuration */ diff --git a/phpBB/phpbb/search/sphinx/config_section.php b/phpBB/phpbb/search/sphinx/config_section.php index 730abf011e..8f9253ec56 100644 --- a/phpBB/phpbb/search/sphinx/config_section.php +++ b/phpBB/phpbb/search/sphinx/config_section.php @@ -10,14 +10,6 @@ namespace phpbb\search\sphinx; /** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * \phpbb\search\sphinx\config_section * Represents a single section inside the sphinx configuration */ diff --git a/phpBB/phpbb/search/sphinx/config_variable.php b/phpBB/phpbb/search/sphinx/config_variable.php index c8f40bfb5f..c0f6d28dcc 100644 --- a/phpBB/phpbb/search/sphinx/config_variable.php +++ b/phpBB/phpbb/search/sphinx/config_variable.php @@ -10,14 +10,6 @@ namespace phpbb\search\sphinx; /** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * \phpbb\search\sphinx\config_variable * Represents a single variable inside the sphinx configuration */ |