silverstripe-framework/tests/php/ORM/ManyManyListTest/IndirectSecondaryExtension.php
2024-08-28 17:00:39 +12:00

25 lines
568 B
PHP

<?php
namespace SilverStripe\ORM\Tests\ManyManyListTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Core\Extension;
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 Extension implements TestOnly
{
private static $db = [
'Title' => 'Varchar(255)'
];
private static $belongs_many_many = [
'Primary' => IndirectPrimary::class
];
}