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

30 lines
556 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\Plugin;
2017-01-06 05:14:45 +01:00
class ExamplePluginWithSingleTypedRequiredArg extends Plugin
{
public $RequiredArgument;
function __construct(\stdClass $requiredArgument)
{
$this->RequiredArgument = $requiredArgument;
}
public function execute()
{
}
}