36 lines
645 B
PHP
36 lines
645 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|