mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-19 07:50:39 +08:00
11 lines
132 B
PHP
11 lines
132 B
PHP
<?php
|
|
|
|
namespace yii\db\ar;
|
|
|
|
class ManyManyRelation extends Relation
|
|
{
|
|
public $joinTable;
|
|
public $leftLink;
|
|
public $rightLink;
|
|
}
|