Dingo\Api\Http\Parser\Accept::__construct PHP Method

__construct() public method

Create a new accept parser instance.
public __construct ( string $standardsTree, string $subtype, string $version, string $format ) : void
$standardsTree string
$subtype string
$version string
$format string
return void
    public function __construct($standardsTree, $subtype, $version, $format)
    {
        $this->standardsTree = $standardsTree;
        $this->subtype = $subtype;
        $this->version = $version;
        $this->format = $format;
    }