silverstripe-framework/tests/php/Core/Injector/InjectorTest/CircularTwo.php

19 lines
282 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Core\Tests\Injector\InjectorTest;
use SilverStripe\Dev\TestOnly;
class CircularTwo implements TestOnly
{
public $circularOne;
2016-10-14 03:30:05 +02:00
public $otherVar;
2016-10-14 03:30:05 +02:00
public function __construct($value = null)
{
$this->otherVar = $value;
}
2016-10-14 03:30:05 +02:00
}