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
25 lines
585 B
PHP
25 lines
585 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\ManyManyListTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataExtension;
|
|
use SilverStripe\ORM\ManyManyList;
|
|
|
|
/**
|
|
* An extension that is applied to ManyManyListTest_Secondary that
|
|
* implements the other side of the many-many relationship.
|
|
*
|
|
* @method ManyManyList Primary()
|
|
*/
|
|
class IndirectSecondaryExtension extends DataExtension implements TestOnly
|
|
{
|
|
private static $db = array(
|
|
'Title' => 'Varchar(255)'
|
|
);
|
|
|
|
private static $belongs_many_many = array(
|
|
'Primary' => IndirectPrimary::class
|
|
);
|
|
}
|