Edujugon / PushNotification

PHP and Laravel Package to send push notifications to Android and IOS devices.
MIT License
478 stars 155 forks source link

config/pushnotification settings not reflected when using Facade #104

Closed Tribunal51 closed 4 years ago

Tribunal51 commented 4 years ago

I have published the package's configuration file to my app's config directory, using: php artisan vendor:publish --provider="Edujugon\PushNotification\Providers\PushNotificationServiceProvider" --tag="config"

However, when I try to use it in the Controller, after use Edujugon\PushNotification\PushNotification, when I create a new instance $push = new PushNotification; the settings like apiKey in the config/pushnotification folder is not reflected here and I have to re-setup it manually using setApiKey(). Is this intended behavior or am I missing something? I want the common settings like apiKey inside config\pushnotifications.php to be reflected whenever I create new instances so I don't have to set up the config everytime.

Edujugon commented 4 years ago

Hi @Tribunal51 ,

Could you try to clear the config cache?

php artisan config:clear

Edujugon commented 4 years ago

Closing this issue since there is no udpate from the creator .

Feel free to reopen it if needed.