mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-09 11:18:10 +00:00
17 lines
251 B
PHP
17 lines
251 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Importmap
|
||
|
|
*/
|
||
|
|
class Importmap extends Eloquent
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* User
|
||
|
|
*
|
||
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||
|
|
*/
|
||
|
|
public function user()
|
||
|
|
{
|
||
|
|
return $this->belongsTo('User');
|
||
|
|
}
|
||
|
|
}
|