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

namespace ipl\Orm\Relation;

use ipl\Orm\Relation;

/**
 * Inverse of a one-to-one or one-to-many relationship
 */
class BelongsTo extends Relation
{
    protected $inverse = true;
}