mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-24 07:16:35 -06: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');
|
|
}
|
|
}
|