<?php
class Settings
{
    function __construct(
        public bool   $includeDistillery   = true,
        public bool   $includeDescription  = true,
        public bool   $includeTastingNotes = false,
        public int    $pageSize            = 64,
        public string $sortByField         = 'whisky',
    ) {}
}
Instantiation with different sort order:


$settings = new \Settings(true, true, false, 64, *'rating'*);