Skip to content

Commit f66140b

Browse files
committed
fix : typo and publish config
1 parent b566729 commit f66140b

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
/node_modules
33
composer.lock
44
package-lock.json
5+
_ide_helper.php
56
.DS_Store
67
.idea

src/Providers/TotemServiceProvider.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,9 @@ public function defineAssetPublishing()
9696
$this->publishes([
9797
TOTEM_PATH.'/public/img' => public_path('vendor/totem/img'),
9898
], 'totem-assets');
99+
100+
$this->publishes([
101+
TOTEM_PATH.'/config' => config_path(),
102+
], 'totem-config');
99103
}
100104
}

src/Totem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static function frequencies()
6161
public static function getCommands()
6262
{
6363
$command_filter = config('totem.artisan.command_filter');
64-
$whitelist = config('totem.artisan.whiltelist', true);
64+
$whitelist = config('totem.artisan.whitelist', true);
6565
$all_commands = collect(Artisan::all());
6666

6767
if (! empty($command_filter)) {

0 commit comments

Comments
 (0)