Shift core files

This commit is contained in:
Laravel Shift
2016-10-19 07:53:10 +00:00
parent 2d2c1d4df3
commit b5a4656a25
2 changed files with 10 additions and 0 deletions
+9
View File
@@ -48,4 +48,13 @@ class Kernel extends ConsoleKernel
{ {
$schedule->command('cachet:beacon')->twiceDaily(0, 12); $schedule->command('cachet:beacon')->twiceDaily(0, 12);
} }
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
require base_path('routes/console.php');
}
} }
+1
View File
@@ -27,6 +27,7 @@ use Illuminate\Support\Facades\Hash;
*/ */
class User extends Model implements AuthenticatableContract, CanResetPasswordContract class User extends Model implements AuthenticatableContract, CanResetPasswordContract
{ {
use Notifiable;
use Authenticatable, CanResetPassword, ValidatingTrait; use Authenticatable, CanResetPassword, ValidatingTrait;
/** /**