mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
17 lines
380 B
PHP
17 lines
380 B
PHP
<?php
|
|
|
|
namespace Flasher\Pnotify\Laravel\ServiceProvider\Providers;
|
|
|
|
use Flasher\Pnotify\Laravel\NotifyPnotifyServiceProvider;
|
|
|
|
interface ServiceProviderInterface
|
|
{
|
|
public function shouldBeUsed();
|
|
|
|
public function publishConfig(NotifyPnotifyServiceProvider $provider);
|
|
|
|
public function registerNotifyPnotifyServices();
|
|
|
|
public function mergeConfigFromPnotify();
|
|
}
|