mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
fba8e2c245
API DataObjectSchema::manyManyComponent() return array is now associative array
21 lines
394 B
PHP
21 lines
394 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Core\Tests\ObjectTest;
|
|
|
|
use SilverStripe\Core\Config\Configurable;
|
|
use SilverStripe\Core\Extensible;
|
|
use SilverStripe\Core\Injector\Injectable;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class BaseObject implements TestOnly
|
|
{
|
|
use Extensible;
|
|
use Configurable;
|
|
use Injectable;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->constructExtensions();
|
|
}
|
|
}
|