printer-manager-admin/app/Values/Partner/PrinterConfig.php

24 lines
477 B
PHP
Raw Normal View History

2023-11-01 21:27:44 +00:00
<?php
namespace App\Values\Partner;
use Spatie\LaravelData\Data;
class PrinterConfig extends Data
{
public function __construct(
public ?string $host = null,
public ?int $port = 7000,
public ?int $ssl_port = 7000,
public ?int $max_upload_size = 1024,
public bool $enable_debug_logging = false
)
{
}
public function networkFormat(): string
{
return $this->host . ':' . $this->port;
}
}