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
15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Core\Tests\ObjectTest;
|
|
|
|
class CreateTest extends BaseObject
|
|
{
|
|
public $constructArguments;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->constructArguments = func_get_args();
|
|
parent::__construct();
|
|
}
|
|
}
|