mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-14 07:18:52 +00:00
[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
This commit is contained in:
parent
7c99fcf782
commit
463e8e4b13
1 changed files with 5 additions and 5 deletions
|
@ -15,11 +15,11 @@ namespace phpbb\db;
|
||||||
|
|
||||||
interface migrator_output_handler_interface
|
interface migrator_output_handler_interface
|
||||||
{
|
{
|
||||||
const VERBOSITY_QUIET = 0;
|
const VERBOSITY_QUIET = 16;
|
||||||
const VERBOSITY_NORMAL = 1;
|
const VERBOSITY_NORMAL = 32;
|
||||||
const VERBOSITY_VERBOSE = 2;
|
const VERBOSITY_VERBOSE = 64;
|
||||||
const VERBOSITY_VERY_VERBOSE = 3;
|
const VERBOSITY_VERY_VERBOSE = 128;
|
||||||
const VERBOSITY_DEBUG = 4;
|
const VERBOSITY_DEBUG = 256;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Write output using the configured closure.
|
* Write output using the configured closure.
|
||||||
|
|
Loading…
Add table
Reference in a new issue