'integer', 'transports' => 'array', 'credentialId' => Base64::class, 'credentialPublicKey' => Base64::class, 'aaguid' => Uuid::class, 'trustPath' => TrustPath::class, 'enabled' => 'boolean', ]; /** * Enabled the key for use. */ public function enable() { $this->update(['enabled' => true]); } /** * Disable the key for use. */ public function disable() { $this->update(['enabled' => false]); } }