Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Container/FileContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class FileContainer
const TYPE_UNKNOWN = 'unknown';
const TYPE_SCSS = 'scss';
const TYPE_LESS = 'less';
static $supportedTypes = [
public static $supportedTypes = [
self::TYPE_SCSS,
self::TYPE_LESS
];
Expand Down
2 changes: 1 addition & 1 deletion src/Processor/Processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Processor
const FORMATTER_EXPANDED = 'expanded';
const FORMATTER_NESTED = 'nested';
const FORMATTER_COMPACT = 'compact';
static $supportedFormatters = [
public static $supportedFormatters = [
self::FORMATTER_COMPRESSED,
self::FORMATTER_CRUNCHED,
self::FORMATTER_EXPANDED,
Expand Down