16 lines
146 B
PHP
Executable File
16 lines
146 B
PHP
Executable File
<?php
|
|
|
|
class Authentication extends Eloquent {
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @return
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
|
|
}
|