You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
24 lines
426 B
PHP
24 lines
426 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the PHPFlasher package.
|
|
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
|
|
*/
|
|
|
|
namespace Flasher\Noty\Prime;
|
|
|
|
use Flasher\Prime\Plugin\Plugin;
|
|
|
|
class NotyPlugin extends Plugin
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getScripts()
|
|
{
|
|
return array(
|
|
'https://cdn.jsdelivr.net/npm/@flasher/flasher-noty@1.0.18/dist/flasher-noty.min.js',
|
|
);
|
|
}
|
|
}
|