php-censor/tests/PHPCensor/Plugin/Util/Fake/ExamplePluginFull.php

36 lines
650 B
PHP
Raw Normal View History

<?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/
*/
2016-07-19 20:28:11 +02:00
namespace Tests\PHPCensor\Plugin\Util\Fake;
2016-07-19 20:28:11 +02:00
use PHPCensor\Builder;
use PHPCensor\Model\Build;
use PHPCensor\Plugin;
class ExamplePluginFull implements Plugin {
/**
* @var array
*/
public $Options;
public function __construct(
2016-07-21 19:02:11 +02:00
Builder $builder,
Build $build,
2016-04-21 06:58:09 +02:00
array $options = []
2016-07-21 19:02:11 +02:00
) {
$this->Options = $options;
}
public function execute()
{
}
}