Rename UuidBuilder to Builder\UuidBuilderInterface

This commit is contained in:
Ben Ramsey
2015-07-16 10:06:16 -05:00
parent 3f0ba1ed00
commit db27dc1680
5 changed files with 9 additions and 10 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
/**
* This file is part of the ramsey/uuid library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
* @license http://opensource.org/licenses/MIT MIT
* @link https://benramsey.com/projects/ramsey-uuid/ Documentation
* @link https://packagist.org/packages/ramsey/uuid Packagist
* @link https://github.com/ramsey/uuid GitHub
*/
namespace Ramsey\Uuid\Builder;
use Ramsey\Uuid\Codec\CodecInterface;
interface UuidBuilderInterface
{
/**
* @return Uuid
*/
public function build(CodecInterface $codec, array $fields);
}