php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginWithSingleRequiredArg.php
2017-01-11 22:52:37 +07:00

37 lines
689 B
PHP

<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2015, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
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()
{
}
}