php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginFull.php
2016-07-21 23:02:11 +06:00

36 lines
650 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\Builder;
use PHPCensor\Model\Build;
use PHPCensor\Plugin;
class ExamplePluginFull implements Plugin {
/**
* @var array
*/
public $Options;
public function __construct(
Builder $builder,
Build $build,
array $options = []
) {
$this->Options = $options;
}
public function execute()
{
}
}