mirror of
https://github.com/mrclay/minify.git
synced 2025-01-16 20:58:13 +01:00
b31855f6b8
- 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
14 lines
254 B
PHP
14 lines
254 B
PHP
<?php
|
|
/**
|
|
* Sets up MinApp controller and serves files
|
|
*
|
|
* DO NOT EDIT! Configure this utility via config.php and groupsConfig.php
|
|
*
|
|
* @package Minify
|
|
*/
|
|
|
|
$app = (require __DIR__ . '/bootstrap.php');
|
|
/* @var \Minify\App $app */
|
|
|
|
$app->runServer();
|