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

27 lines
388 B
PHP

<?php
namespace Tests\PHPCensor\Plugin\Util\Fake;
use PHPCensor\Plugin;
class ExamplePluginWithSingleOptionalArg extends Plugin
{
/**
* @return string
*/
public static function pluginName()
{
return 'example_plugin_with_single_optional_arg';
}
function __construct($optional = null)
{
}
public function execute()
{
}
}