Skip to content

Commit 487c7ff

Browse files
fix PMD warnings
1 parent 894918f commit 487c7ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Container/FileContainer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class FileContainer
1212
const TYPE_UNKNOWN = 'unknown';
1313
const TYPE_SCSS = 'scss';
1414
const TYPE_LESS = 'less';
15-
static $supportedTypes = [
15+
public static $supportedTypes = [
1616
self::TYPE_SCSS,
1717
self::TYPE_LESS
1818
];

src/Processor/Processor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Processor
2222
const FORMATTER_EXPANDED = 'expanded';
2323
const FORMATTER_NESTED = 'nested';
2424
const FORMATTER_COMPACT = 'compact';
25-
static $supportedFormatters = [
25+
public static $supportedFormatters = [
2626
self::FORMATTER_COMPRESSED,
2727
self::FORMATTER_CRUNCHED,
2828
self::FORMATTER_EXPANDED,

0 commit comments

Comments
 (0)