Skip to content

Commit deb21da

Browse files
committed
final test fix
1 parent 4bb454d commit deb21da

16 files changed

+6
-5
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
/.idea
2+
/.vscode
3+
/build
14
/vendor
25
composer.phar
36
composer.lock
4-
.DS_Store
7+
.DS_Store
8+
.phpunit.result.cache

src/Provider.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ public function boot()
1616
{
1717
$this->publishes([
1818
__DIR__ . '/Config/menu.php' => config_path('menu.php'),
19-
], 'menu');
20-
21-
$this->publishes([
2219
__DIR__ . '/Resources/views' => base_path('resources/views/vendor/akaunting/menu'),
23-
], 'views');
20+
], 'menu');
2421

2522
$this->app->singleton('menu', function ($app) {
2623
return new Menu($app['view'], $app['config']);

0 commit comments

Comments
 (0)