Skip to content

Commit c86bd38

Browse files
authored
Missing 'static'
1 parent 920f3f5 commit c86bd38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Util/ColourUtil.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ColourUtil
1010
/**
1111
* @var array
1212
*/
13-
private $defaultColoursNames = [
13+
private static $defaultColoursNames = [
1414
'black',
1515
'red',
1616
'green',
@@ -24,7 +24,7 @@ class ColourUtil
2424
/**
2525
* @var array
2626
*/
27-
private $coloursMap = [
27+
private static $coloursMap = [
2828
0 => 'black',
2929
1 => 'red',
3030
2 => 'green',

0 commit comments

Comments
 (0)