![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.intellicart.co/vendor/pragmarx/google2fa-laravel/tests/Support/ |
<?php namespace PragmaRX\Google2FALaravel\Tests\Support; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * Route notifications for the Email channel. * * @return string */ public function routeNotificationForEmail() { return $this->email; } /** * Route notifications for the Slack channel. * * @return string */ public function routeNotificationForSlack() { return config('services.slack.webhook_url'); } /** * Get the connection of the entity. * * @return string|null */ public function getQueueableConnection() { // TODO: Implement getQueueableConnection() method. } /** * Retrieve the model for a bound value. * * @param mixed $value * @param string|null $field * * @return \Illuminate\Database\Eloquent\Model|null */ public function resolveRouteBinding($value, $field = null) { // TODO: Implement resolveRouteBinding() method. } }