Files
snipe-it/app/models/Authentication.php
T
2013-11-13 01:59:39 -05:00

16 lines
146 B
PHP
Executable File

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