Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Jun 25, 2015
1 parent 46f541f commit 986dd4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HTMLMinServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function register()
*/
protected function registerCssMinifier(Application $app)
{
$app->singleton('htmlmin.css', function ($app) {
$app->singleton('htmlmin.css', function () {
return new CssMinifier();
});

Expand All @@ -115,7 +115,7 @@ protected function registerCssMinifier(Application $app)
*/
protected function registerJsMinifier(Application $app)
{
$app->singleton('htmlmin.js', function ($app) {
$app->singleton('htmlmin.js', function () {
return new JsMinifier();
});

Expand Down

0 comments on commit 986dd4e

Please sign in to comment.