silverstripe-framework/tests/php/Core/Injector/InjectorTest/ConstructableObject.php
2016-11-23 19:25:12 +13:00

16 lines
236 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;
}
}