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

[ticket/16736] Fix static declarations on master

PHPBB3-16736
This commit is contained in:
Máté Bartus
2021-03-24 01:22:27 +01:00
parent 46d2a93ae6
commit 4737da3ec7
8 changed files with 24 additions and 24 deletions

View File

@@ -15,7 +15,7 @@ namespace phpbb\composer\io;
class html_output_formatter extends \Composer\Console\HtmlOutputFormatter
{
protected static $availableForegroundColors = [
static protected $availableForegroundColors = [
30 => 'black',
31 => 'red',
32 => 'green',
@@ -26,7 +26,7 @@ class html_output_formatter extends \Composer\Console\HtmlOutputFormatter
37 => 'white',
];
protected static $availableBackgroundColors = [
static protected $availableBackgroundColors = [
40 => 'black',
41 => 'red',
42 => 'green',
@@ -37,7 +37,7 @@ class html_output_formatter extends \Composer\Console\HtmlOutputFormatter
47 => 'white',
];
protected static $availableOptions
static protected $availableOptions
= [
1 => 'bold',
4 => 'underscore',