initial commit
This commit is contained in:
35
vendor/biblys/isbn/src/Biblys/Isbn/Ranges.php
vendored
Normal file
35
vendor/biblys/isbn/src/Biblys/Isbn/Ranges.php
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user