Files
snipe-it/app/models/Authentication.php
T
2014-12-24 22:34:16 +00:00

13 lines
160 B
PHP
Executable File

<?php
class Authentication extends Eloquent
{
/**
* @return
*/
public function user()
{
return $this->belongsTo('User');
}
}