Neomerx\JsonApi\Encoder\Parameters\EncodingParameters::__construct PHP Метод

__construct() публичный Метод

public __construct ( string[] | null $includePaths = null, array $fieldSets = null, Neomerx\JsonApi\Contracts\Encoder\Parameters\SortParameterInterface[] | null $sortParameters = null, array $pagingParameters = null, array $filteringParameters = null, array $unrecognizedParams = null )
$includePaths string[] | null
$fieldSets array
$sortParameters Neomerx\JsonApi\Contracts\Encoder\Parameters\SortParameterInterface[] | null
$pagingParameters array
$filteringParameters array
$unrecognizedParams array
    public function __construct($includePaths = null, array $fieldSets = null, $sortParameters = null, array $pagingParameters = null, array $filteringParameters = null, array $unrecognizedParams = null)
    {
        $this->fieldSets = $fieldSets;
        $this->includePaths = $includePaths;
        $this->sortParameters = $sortParameters;
        $this->pagingParameters = $pagingParameters;
        $this->unrecognizedParams = $unrecognizedParams;
        $this->filteringParameters = $filteringParameters;
    }