mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 23:17:47 +01:00
17 lines
374 B
PHP
17 lines
374 B
PHP
<?php
|
|
|
|
namespace Flasher\Notyf\Laravel\ServiceProvider\Providers;
|
|
|
|
use Flasher\Notyf\LaravelFlasher\PrimeNotyfServiceProvider;
|
|
|
|
interface ServiceProviderInterface
|
|
{
|
|
public function shouldBeUsed();
|
|
|
|
public function publishConfig(NotifyNotyfServiceProvider $provider);
|
|
|
|
public function registerNotifyNotyfServices();
|
|
|
|
public function mergeConfigFromNotyf();
|
|
}
|