for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Resta\Authenticate\Driver\Eloquent;
use Illuminate\Database\Eloquent\Model as Eloquent;
class User extends Eloquent
{
/**
* User constructor.
* @param array $attributes
*/
public function __construct(array $attributes = [])
parent::__construct($attributes);
$this->table = app()->get('authenticateTable');
}