芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/vendor/laravel/passport/src/AuthCode.php
'bool', ]; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = [ 'expires_at', ]; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The "type" of the primary key ID. * * @var string */ protected $keyType = 'string'; /** * Get the client that owns the authentication code. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function client() { return $this->belongsTo(Passport::clientModel()); } /** * Get the current connection name for the model. * * @return string|null */ public function getConnectionName() { return config('passport.storage.database.connection') ?? $this->connection; } }