Files
snipe-it/app/models/Authentication.php
T
2014-06-24 17:49:39 -04:00

16 lines
175 B
PHP
Executable File

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