Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeTowers committed Jun 6, 2024
1 parent eacd3c2 commit eb95c3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/system/classes/CompilableAssets.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class CompilableAssets
];

/**
* A list of packages registered for mixing.
* A list of packages registered for compiling.
*/
protected array $packages = [];

Expand All @@ -67,15 +67,15 @@ public function init(): void
*
* Example:
*
* public function registerMixPackages()
* public function registerMixPackages(): array
* {
* return [
* 'package-name-1' => 'winter.mix.js',
* 'package-name-2' => 'assets/js/build.js',
* ];
* }
*
* public function registerVitePackages()
* public function registerVitePackages(): array
* {
* return [
* 'package-name-1' => 'vite.config.js',
Expand Down

0 comments on commit eb95c3c

Please sign in to comment.