php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginWithNoConstructorArgs.php
2017-01-06 11:14:45 +07:00

21 lines
398 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 ExamplePluginWithNoConstructorArgs extends Plugin
{
public function execute()
{
}
}