php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginWithSingleOptionalArg.php

27 lines
388 B
PHP
Raw Normal View History

<?php
2016-07-19 20:28:11 +02:00
namespace Tests\PHPCensor\Plugin\Util\Fake;
2016-07-19 20:28:11 +02:00
use PHPCensor\Plugin;
2017-01-06 05:14:45 +01:00
class ExamplePluginWithSingleOptionalArg extends Plugin
{
2017-01-11 16:15:54 +01:00
/**
* @return string
*/
public static function pluginName()
{
return 'example_plugin_with_single_optional_arg';
}
function __construct($optional = null)
{
}
public function execute()
{
}
}