php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginWithSingleOptionalArg.php
2016-07-20 18:27:32 +06:00

26 lines
459 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 ExamplePluginWithSingleOptionalArg implements Plugin
{
function __construct($optional = null)
{
}
public function execute()
{
}
}