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

16 lines
254 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 ConstructableObject implements TestOnly
{
public $property;
2016-10-14 03:30:05 +02:00
public function __construct($prop)
{
$this->property = $prop;
}
2016-10-14 03:30:05 +02:00
}