Files
php-flasher/src/Noty/Laravel/FlasherNotyServiceProvider.php
T
Younes ENNAJI 611fda9c61 Simplify PHPDoc comments in Noty integration
Remove verbose documentation pattern references and redundant
explanations, keeping only essential type annotations.
2026-01-15 22:35:01 +01:00

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();
}
}