11 lines
158 B
PHP
11 lines
158 B
PHP
|
<?php
|
||
|
|
||
|
namespace FuzeWorks\Plugins;
|
||
|
use FuzeWorks\PluginInterface;
|
||
|
|
||
|
class TestMissingPluginHeader implements PluginInterface
|
||
|
{
|
||
|
public function init()
|
||
|
{
|
||
|
}
|
||
|
}
|