Skip to content

Commit 6373267

Browse files
authored
Merge pull request #3 from ilhamarrouf/dev
fix path config publishes and documentation
2 parents d449f34 + 608dd6f commit 6373267

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $ composer require kawankoding/laravel-fcm
2727
// config/app.php
2828
'aliases' => [
2929
...
30-
'Fcm' => Kawankoding\Fcm\Fcm::class,
30+
'Fcm' => Kawankoding\Fcm\FcmFacade::class,
3131
];
3232
```
3333

src/FcmServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class FcmServiceProvider extends ServiceProvider
1414
public function boot()
1515
{
1616
$this->publishes([
17-
__DIR__.'/../../../../resources/config/laravel-fcm.php' => config_path('laravel-fcm.php'),
17+
__DIR__.'/../resources/config/laravel-fcm.php' => config_path('laravel-fcm.php'),
1818
]);
1919
}
2020

0 commit comments

Comments
 (0)