diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-11-14 00:14:04 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-11-14 00:14:04 +0100 |
commit | 009a1303f59628417573b47b162690b057594953 (patch) | |
tree | 7586ba1223f9b08d048a71fefd3717b6120a414c | |
parent | e48b2c07ebe95aaff93eed6c7df5dff5d6c50fe2 (diff) | |
download | forums-009a1303f59628417573b47b162690b057594953.tar forums-009a1303f59628417573b47b162690b057594953.tar.gz forums-009a1303f59628417573b47b162690b057594953.tar.bz2 forums-009a1303f59628417573b47b162690b057594953.tar.xz forums-009a1303f59628417573b47b162690b057594953.zip |
[ticket/12017] Remove IN_PHPBB defined check
PHPBB3-12017
-rw-r--r-- | tests/functional/fixtures/ext/foo/bar/event/permission.php | 9 | ||||
-rw-r--r-- | tests/functional/fixtures/ext/foo/bar/event/user_setup.php | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/tests/functional/fixtures/ext/foo/bar/event/permission.php b/tests/functional/fixtures/ext/foo/bar/event/permission.php index 92e24074ad..9b319dd35f 100644 --- a/tests/functional/fixtures/ext/foo/bar/event/permission.php +++ b/tests/functional/fixtures/ext/foo/bar/event/permission.php @@ -11,15 +11,6 @@ namespace foo\bar\event; /** -* @ignore -*/ - -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * Event listener */ use Symfony\Component\EventDispatcher\EventSubscriberInterface; diff --git a/tests/functional/fixtures/ext/foo/bar/event/user_setup.php b/tests/functional/fixtures/ext/foo/bar/event/user_setup.php index 1409f97470..8fa7ac97da 100644 --- a/tests/functional/fixtures/ext/foo/bar/event/user_setup.php +++ b/tests/functional/fixtures/ext/foo/bar/event/user_setup.php @@ -11,15 +11,6 @@ namespace foo\bar\event; /** -* @ignore -*/ - -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** * Event listener */ use Symfony\Component\EventDispatcher\EventSubscriberInterface; |