mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
00308ad4ab
Further cleanup of docblocks and standardisation of repos.
30 lines
641 B
PHP
30 lines
641 B
PHP
<?php namespace BookStack;
|
|
|
|
use BookStack\Auth\User;
|
|
|
|
/**
|
|
* @property int created_by
|
|
* @property int updated_by
|
|
*/
|
|
abstract class Ownable extends Model
|
|
{
|
|
/**
|
|
* Relation for the user that created this entity.
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function createdBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
/**
|
|
* Relation for the user that updated this entity.
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function updatedBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'updated_by');
|
|
}
|
|
|
|
}
|