php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginWithNoConstructorArgs.php
2017-03-12 11:40:40 +07:00

21 lines
330 B
PHP

<?php
namespace Tests\PHPCensor\Plugin\Util\Fake;
use PHPCensor\Plugin;
class ExamplePluginWithNoConstructorArgs extends Plugin
{
/**
* @return string
*/
public static function pluginName()
{
return 'example_plugin_with_no_constructor_args';
}
public function execute()
{
}
}