mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-02-07 01:29:27 -06:00
8 lines
136 B
PHP
8 lines
136 B
PHP
<?php
|
|
|
|
class Importentry extends Eloquent {
|
|
public function importmap()
|
|
{
|
|
return $this->belongsTo('Importmap');
|
|
}
|
|
}
|