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