Lazer\Classes\Core_Relation::hasMany PHP Метод

hasMany() публичный Метод

Set relation many2one to table
public hasMany ( string $table ) : Core_Relation
$table string Table name
Результат Core_Relation
    public function hasMany($table)
    {
        $this->setTable('foreign', $table);
        $this->setRelationType(__FUNCTION__);
        return $this;
    }