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

19 lines
282 B
PHP

<?php
namespace SilverStripe\Core\Tests\Injector\InjectorTest;
use SilverStripe\Dev\TestOnly;
class CircularTwo implements TestOnly
{
public $circularOne;
public $otherVar;
public function __construct($value = null)
{
$this->otherVar = $value;
}
}