first commit
This commit is contained in:
80
vendor/php-flasher/flasher/Plugin/PluginInterface.php
vendored
Normal file
80
vendor/php-flasher/flasher/Plugin/PluginInterface.php
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the PHPFlasher package.
|
||||
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
|
||||
*/
|
||||
|
||||
namespace Flasher\Prime\Plugin;
|
||||
|
||||
use Flasher\Prime\Factory\NotificationFactoryInterface;
|
||||
|
||||
interface PluginInterface
|
||||
{
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getAlias();
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getName();
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getServiceID();
|
||||
|
||||
/**
|
||||
* @return class-string<NotificationFactoryInterface>
|
||||
*/
|
||||
public function getFactory();
|
||||
|
||||
/**
|
||||
* @return string|string[]|array{cdn?: string|string[], local?: string|string[]}
|
||||
*/
|
||||
public function getScripts();
|
||||
|
||||
/**
|
||||
* @return string|string[]|array{cdn?: string|string[], local?: string|string[]}
|
||||
*/
|
||||
public function getStyles();
|
||||
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function getOptions();
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getAssetsDir();
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getResourcesDir();
|
||||
|
||||
/**
|
||||
* @phpstan-param array{
|
||||
* scripts?: string|array,
|
||||
* styles?: string|array,
|
||||
* options?: array,
|
||||
* } $config
|
||||
*
|
||||
* @phpstan-return array{
|
||||
* scripts?: array,
|
||||
* styles?: array,
|
||||
* options?: array,
|
||||
* }
|
||||
*/
|
||||
public function normalizeConfig(array $config);
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $options
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function processConfiguration(array $options = array());
|
||||
}
|
Reference in New Issue
Block a user