Browscap\Data\Division::__construct PHP Method

__construct() public method

public __construct ( string $name, integer $sortIndex, array $userAgents, boolean $lite, boolean $standard = true, array $versions = [] )
$name string
$sortIndex integer
$userAgents array
$lite boolean
$standard boolean
$versions array
    public function __construct($name, $sortIndex, array $userAgents, $lite, $standard = true, array $versions = [])
    {
        $this->name = $name;
        $this->sortIndex = $sortIndex;
        $this->userAgents = $userAgents;
        $this->lite = $lite;
        $this->standard = $standard;
        $this->versions = $versions;
    }