16 lines
220 B
PHP
16 lines
220 B
PHP
|
<?php
|
||
|
|
||
|
namespace FuzeWorks\Plugins;
|
||
|
use FuzeWorks\PluginInterface;
|
||
|
|
||
|
class TestGetPluginMethodHeader implements PluginInterface
|
||
|
{
|
||
|
public function init()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function getPlugin()
|
||
|
{
|
||
|
return 'test_string';
|
||
|
}
|
||
|
}
|