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

28 lines
468 B
PHP

<?php
namespace Tests\PHPCensor\Plugin\Util\Fake;
use PHPCensor\Plugin;
class ExamplePluginWithSingleRequiredArg extends Plugin
{
/**
* @return string
*/
public static function pluginName()
{
return 'example_plugin_with_single_required_arg';
}
public $RequiredArgument;
function __construct($requiredArgument)
{
$this->RequiredArgument = $requiredArgument;
}
public function execute()
{
}
}