Skip to content

Commit

Permalink
🎨 Tidy up the AcornPretty class
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x committed Dec 21, 2023
1 parent f5519d5 commit 54a7b4b
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/AcornPretty.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

use Illuminate\Support\Collection;
use Roots\Acorn\Application;
use Roots\AcornPretty\Modules\AbstractModule;
use Roots\AcornPretty\Modules\CleanUpModule;
use Roots\AcornPretty\Modules\NiceSearchModule;
use Roots\AcornPretty\Modules\RelativeUrlsModule;

class AcornPretty
{
Expand All @@ -18,18 +14,16 @@ class AcornPretty

/**
* The package configuration.
*
* @var array
*/
protected Collection $config;

/**
* The Acorn Pretty modules.
*/
protected array $modules = [
CleanUpModule::class,
NiceSearchModule::class,
RelativeUrlsModule::class,
Modules\CleanUpModule::class,
Modules\NiceSearchModule::class,
Modules\RelativeUrlsModule::class,
];

/**
Expand Down

0 comments on commit 54a7b4b

Please sign in to comment.