diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-20 22:28:29 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-20 22:28:29 +0200 |
commit | 463e8e4b13373f771395d21c28b1522e302adcd7 (patch) | |
tree | ca538e1316fc20bade4737e1c85d53cbf26642b0 /phpBB/phpbb | |
parent | 7c99fcf782b02431a4121b08f5a3cdb16477d200 (diff) | |
download | forums-463e8e4b13373f771395d21c28b1522e302adcd7.tar forums-463e8e4b13373f771395d21c28b1522e302adcd7.tar.gz forums-463e8e4b13373f771395d21c28b1522e302adcd7.tar.bz2 forums-463e8e4b13373f771395d21c28b1522e302adcd7.tar.xz forums-463e8e4b13373f771395d21c28b1522e302adcd7.zip |
[ticket/14742] Change constants to use Symfony values
This is to avoid errors when comparing verbosity levels
in a CLI output handler that is using Symfony's OutputInterface
for example.
PHPBB3-14742
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migrator_output_handler_interface.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/db/migrator_output_handler_interface.php b/phpBB/phpbb/db/migrator_output_handler_interface.php index a923af99f6..9947b51dcc 100644 --- a/phpBB/phpbb/db/migrator_output_handler_interface.php +++ b/phpBB/phpbb/db/migrator_output_handler_interface.php @@ -15,11 +15,11 @@ namespace phpbb\db; interface migrator_output_handler_interface { - const VERBOSITY_QUIET = 0; - const VERBOSITY_NORMAL = 1; - const VERBOSITY_VERBOSE = 2; - const VERBOSITY_VERY_VERBOSE = 3; - const VERBOSITY_DEBUG = 4; + const VERBOSITY_QUIET = 16; + const VERBOSITY_NORMAL = 32; + const VERBOSITY_VERBOSE = 64; + const VERBOSITY_VERY_VERBOSE = 128; + const VERBOSITY_DEBUG = 256; /** * Write output using the configured closure. |