1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge branch 'ticket/14742' into ticket/14742-32x

Conflicts:
	phpBB/phpbb/db/migrator.php
This commit is contained in:
Oliver Schramm
2016-08-20 22:38:45 +02:00
6 changed files with 58 additions and 62 deletions

View File

@@ -15,11 +15,11 @@ namespace phpbb\db\output_handler;
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.