Files
php-flasher/ServiceProvider/Providers/ServiceProviderInterface.php
T
2020-12-02 00:57:12 +01:00

17 lines
398 B
PHP

<?php
namespace Flasher\SweetAlert\Laravel\ServiceProvider\Providers;
use Flasher\SweetAlert\Laravel\NotifySweetAlertServiceProvider;
interface ServiceProviderInterface
{
public function shouldBeUsed();
public function publishConfig(NotifySweetAlertServiceProvider $provider);
public function registerNotifySweetAlertServices();
public function mergeConfigFromSweetAlert();
}