Skip to content

Commit 45e3381

Browse files
Removed unused param
1 parent b53fba4 commit 45e3381

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/HTMLMinServiceProvider.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class HTMLMinServiceProvider extends ServiceProvider
2929
*/
3030
public function boot()
3131
{
32-
$this->setupConfig($this->app);
32+
$this->setupConfig();
3333

3434
if ($this->app->config->get('htmlmin.blade')) {
3535
$this->enableBladeOptimisations($this->app);
@@ -45,11 +45,9 @@ public function boot()
4545
/**
4646
* Setup the config.
4747
*
48-
* @param \Illuminate\Contracts\Foundation\Application $app
49-
*
5048
* @return void
5149
*/
52-
protected function setupConfig(Application $app)
50+
protected function setupConfig()
5351
{
5452
$source = realpath(__DIR__.'/../config/htmlmin.php');
5553

0 commit comments

Comments
 (0)