silverstripe-framework/tests/php/Core/Injector/AopProxyServiceTest/SampleService.php
2016-12-19 16:08:19 +13:00

16 lines
307 B
PHP

<?php
namespace SilverStripe\Core\Tests\Injector\AopProxyServiceTest;
class SampleService
{
public $constructorVarOne;
public $constructorVarTwo;
public function __construct($v1 = null, $v2 = null)
{
$this->constructorVarOne = $v1;
$this->constructorVarTwo = $v2;
}
}