mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
f0005d196b
Remove whitespaces.
12 lines
237 B
PHP
12 lines
237 B
PHP
<?php
|
|
|
|
/**
|
|
* Register System routes before all user routes.
|
|
*/
|
|
App::before(function ($request) {
|
|
/*
|
|
* Combine JavaScript and StyleSheet assets
|
|
*/
|
|
Route::any('combine/{file}', 'System\Classes\Controller@combine');
|
|
});
|