summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/orm/src/Relation/BelongsToOne.php
blob: afdfbec91bae6c27d39fb71e2484b593f8afbc67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace ipl\Orm\Relation;

/**
 * One-to-one relationship with a junction table
 */
class BelongsToOne extends BelongsToMany
{
    protected const RELATION_CLASS = HasOne::class;

    protected $isOne = true;
}