mirror of
https://github.com/mrclay/minify.git
synced 2025-08-05 21:57:53 +02:00
- braces - function_declaration - lowercase_keywords - method_argument_space - no_spaces_inside_parenthesis - no_trailing_whitespace - no_trailing_whitespace_in_comment - single_blank_line_at_eof
10 lines
184 B
PHP
10 lines
184 B
PHP
<?php
|
|
|
|
// using same lib path and cache path specified in /min/config.php
|
|
|
|
require __DIR__ . '/../config.php';
|
|
|
|
$minifyCachePath = isset($min_cachePath)
|
|
? $min_cachePath
|
|
: '';
|