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

16 lines
254 B
PHP

<?php
namespace SilverStripe\Core\Tests\Injector\InjectorTest;
use SilverStripe\Dev\TestOnly;
class ConstructableObject implements TestOnly
{
public $property;
public function __construct($prop)
{
$this->property = $prop;
}
}