mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
namespace ScssPhp\ScssPhp;
|
|
|
|
final class OutputStyle
|
|
{
|
|
const EXPANDED = 'expanded';
|
|
const COMPRESSED = 'compressed';
|
|
}
|