mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-03 11:32:00 +00:00
8 lines
136 B
PHP
8 lines
136 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Importentry extends Eloquent {
|
||
|
|
public function importmap()
|
||
|
|
{
|
||
|
|
return $this->belongsTo('Importmap');
|
||
|
|
}
|
||
|
|
}
|