mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
611fda9c61
Remove verbose documentation pattern references and redundant explanations, keeping only essential type annotations.
17 lines
318 B
PHP
17 lines
318 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Flasher\Noty\Laravel;
|
|
|
|
use Flasher\Laravel\Support\PluginServiceProvider;
|
|
use Flasher\Noty\Prime\NotyPlugin;
|
|
|
|
final class FlasherNotyServiceProvider extends PluginServiceProvider
|
|
{
|
|
public function createPlugin(): NotyPlugin
|
|
{
|
|
return new NotyPlugin();
|
|
}
|
|
}
|