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

22 lines
346 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 DummyRequirements implements TestOnly
{
public $backend;
2016-10-14 03:30:05 +02:00
public function __construct($backend)
{
$this->backend = $backend;
}
2016-10-14 03:30:05 +02:00
public function setBackend($backend)
{
$this->backend = $backend;
}
2016-10-14 03:30:05 +02:00
}