'boolean', 'port' => 'integer']; } public function exports(): HasMany { return $this->hasMany(InvoiceExport::class); } /** Human-readable, for a list and for an error message. */ public function describe(): string { return $this->driver === self::SFTP ? $this->username.'@'.$this->host.':'.$this->path : $this->path; } }