Files
konyvleltar/vendor/biblys/isbn/src/Biblys/Isbn/Ranges.php

36 lines
645 B
PHP
Raw Normal View History

2021-12-20 12:50:53 +01:00
<?php
/*
* This file is part of the biblys/isbn package.
*
* (c) Clément Bourgoin
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/
namespace Biblys\Isbn;
class Ranges
{
private $prefixes, $groups;
public function __construct()
{
include('ranges-array.php');
$this->prefixes = $prefixes;
$this->groups = $groups;
}
public function getPrefixes()
{
return $this->prefixes;
}
public function getGroups()
{
return $this->groups;
}
}