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
+2 -2
View File
@@ -16,7 +16,7 @@ namespace Ramsey\Uuid\Codec;
use InvalidArgumentException;
use Ramsey\Uuid\Uuid;
use Ramsey\Uuid\UuidBuilder;
use Ramsey\Uuid\Builder\UuidBuilderInterface;
use Ramsey\Uuid\UuidInterface;
class StringCodec implements CodecInterface
@@ -24,7 +24,7 @@ class StringCodec implements CodecInterface
private $builder;
public function __construct(UuidBuilder $builder)
public function __construct(UuidBuilderInterface $builder)
{
$this->builder = $builder;
}